There was an error while loading. Please reload this page.
1 parent 6657278 commit c0225b3Copy full SHA for c0225b3
1 file changed
git/repo/base.py
@@ -950,7 +950,12 @@ def blame_incremental(self, rev: str | HEAD, file: str, **kwargs: Any) -> Iterat
950
)
951
952
def blame(
953
- self, rev: Union[str, HEAD], file: str, incremental: bool = False, rev_opts: Optional[List[str]]=None, **kwargs: Any
+ self,
954
+ rev: Union[str, HEAD],
955
+ file: str,
956
+ incremental: bool = False,
957
+ rev_opts: Optional[List[str]] = None,
958
+ **kwargs: Any
959
) -> List[List[Commit | List[str | bytes] | None]] | Iterator[BlameEntry] | None:
960
"""The blame information for the given file at the given revision.
961
0 commit comments