diff --git a/stubs/whatthepatch/whatthepatch/patch.pyi b/stubs/whatthepatch/whatthepatch/patch.pyi index 9e03e3d91..669e187a4 100644 --- a/stubs/whatthepatch/whatthepatch/patch.pyi +++ b/stubs/whatthepatch/whatthepatch/patch.pyi @@ -76,3 +76,4 @@ def parse_unified_diff(text: str | Iterable[str]) -> list[Change] | None: ... def parse_context_diff(text: str | Iterable[str]) -> list[Change] | None: ... def parse_ed_diff(text: str | Iterable[str]) -> list[Change] | None: ... def parse_rcs_ed_diff(text: str | Iterable[str]) -> list[Change] | None: ... +def parse_git_binary_diff(text: str | Iterable[str]) -> list[Change]: ...