Skip to content

Commit c0225b3

Browse files
committed
chore(blame): Fix flake8 warnings
1 parent 6657278 commit c0225b3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

git/repo/base.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,12 @@ def blame_incremental(self, rev: str | HEAD, file: str, **kwargs: Any) -> Iterat
950950
)
951951

952952
def blame(
953-
self, rev: Union[str, HEAD], file: str, incremental: bool = False, rev_opts: Optional[List[str]]=None, **kwargs: Any
953+
self,
954+
rev: Union[str, HEAD],
955+
file: str,
956+
incremental: bool = False,
957+
rev_opts: Optional[List[str]] = None,
958+
**kwargs: Any
954959
) -> List[List[Commit | List[str | bytes] | None]] | Iterator[BlameEntry] | None:
955960
"""The blame information for the given file at the given revision.
956961

0 commit comments

Comments
 (0)