Jelmer Vernooij il y a 4 ans
Parent
commit
ff212efd42
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      dulwich/index.py

+ 1 - 1
dulwich/index.py

@@ -253,7 +253,7 @@ def read_index_dict(f):
     return ret
 
 
-def write_index(f: BinaryIO, entries: Iterable[Tuple[bytes, IndexEntry]], version: Optional[int] = None):
+def write_index(f: BinaryIO, entries: List[Tuple[bytes, IndexEntry]], version: Optional[int] = None):
     """Write an index file.
 
     Args: