[F] Fix typo

This commit is contained in:
Azalea Gui
2023-11-06 03:32:31 -05:00
parent 25e319d898
commit 62929dd48a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ class ExtractedCommit(NamedTuple):
return dateutil.parser.isoparse(self.time)
def git_log(path: Path, fail_silently: False) -> list[ExtractedCommit]:
def git_log(path: Path, fail_silently: bool = False) -> list[ExtractedCommit]:
"""
Call and parse git log. This function requires that git>=2.37.1 is installed on your system.