Skip to content

Commit

Permalink
pre-commit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Davit Shartava committed Jul 25, 2024
1 parent 135d094 commit 78654eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project_rossum_deploy/commands/download/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def is_within_git_dir(path: Path) -> bool:
Check if the given path is within a .git directory.
"""
for parent in path.parents:
if parent.name == '.git':
if parent.name == ".git":
return True
return False

Expand Down

0 comments on commit 78654eb

Please sign in to comment.