瀏覽代碼

Define a stricter return type for _parse_message

If the first item of the tuple is not None, then the second item is
guaranteed not to be None either.
Valentin Lorentz 1 年之前
父節點
當前提交
53faf4cc3c
共有 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: