Skip to content

Commit

Permalink
🐛 fix python3.12 upgrade bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhiljha committed Apr 24, 2024
1 parent 135c7c7 commit 44e1a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transpire/internal/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def resolved_dir(self) -> Path:

@property
def clean_git_url(self):
return self.git.removesuffix(".git") + ".git"
return str(self.git).removesuffix(".git") + ".git"

def get_cached_repo(self, *, commit: str | None = None) -> tuple[Path, str]:
config = CLIConfig.from_env()
Expand Down

0 comments on commit 44e1a20

Please sign in to comment.