Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Jun 25, 2024
1 parent b186756 commit c637fed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev4"
version = "0.0.0.dev5"
name = "GitTidy"
requires-python = ">=3.10"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion src/gittidy/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def get_remotes(self) -> dict[str, dict[str, str]]:
}
}
"""
out = self.run_command(["remote", "-v"]).output
out = self.run_command(["remote", "-v"]).output or ""
remotes = {}
for remote in out.splitlines():
remote_name, url, purpose_raw = remote.split()
Expand Down

0 comments on commit c637fed

Please sign in to comment.