瀏覽代碼

Merge pull request #1176 from progval/stricter-type

Define a stricter return type for _parse_message
Jelmer Vernooij 1 年之前
父節點
當前提交
24a5b3ad3f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dulwich/objects.py

+ 1 - 1
dulwich/objects.py

@@ -651,7 +651,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[Union[Tuple[None, None], Tuple[Optional[bytes], bytes]]]:
     """Parse a message with a list of fields and a body.
 
     Args: