Skip to content

Commit

Permalink
chore: typing
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Nov 14, 2024
1 parent 819c5cb commit b462cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/githarbor/providers/githubrepository.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def list_commits(
}
# Filter out None values
kwargs = {k: v for k, v in kwargs.items() if v is not None}
commits = self._repo.get_commits(**kwargs)
commits = self._repo.get_commits(**kwargs) # type: ignore
results = commits[:max_results] if max_results else commits
return [githubtools.create_commit_model(c) for c in results]

Expand Down

0 comments on commit b462cf9

Please sign in to comment.