Kaynağa Gözat

Fix typing.

Jelmer Vernooij 2 yıl önce
ebeveyn
işleme
5f0a3b22b3
1 değiştirilmiş dosya ile 6 ekleme ve 6 silme
  1. 6 6
      dulwich/objects.py

+ 6 - 6
dulwich/objects.py

@@ -26,14 +26,14 @@ import os
 import posixpath
 import stat
 from typing import (
-    Sequence,
     Optional,
     Dict,
     Iterable,
-    Union,
-    Type,
     Iterator,
     List,
+    Tuple,
+    Type,
+    Union,
 )
 import zlib
 from collections import namedtuple
@@ -421,10 +421,10 @@ class ShaFile:
         self._chunked_text = []
         self._needs_serialization = True
 
-    def _deserialize(self, chunks: Iterator[bytes]) -> None:
+    def _deserialize(self, chunks: List[bytes]) -> None:
         raise NotImplementedError(self._deserialize)
 
-    def _serialize(self) -> Sequence[bytes]:
+    def _serialize(self) -> List[bytes]:
         raise NotImplementedError(self._serialize)
 
     @classmethod
@@ -659,7 +659,7 @@ class Blob(ShaFile):
         return ret
 
 
-def _parse_message(chunks: Iterable[bytes]) -> Iterator[tuple[Optional[bytes], Optional[bytes]]]:
+def _parse_message(chunks: Iterable[bytes]) -> Iterator[Tuple[Optional[bytes], Optional[bytes]]]:
     """Parse a message with a list of fields and a body.
 
     Args: