From 44e1a20579eae03f57c08b3585d85280f8c1a4be Mon Sep 17 00:00:00 2001 From: Nikhil Jha Date: Tue, 23 Apr 2024 16:58:12 -0700 Subject: [PATCH] :bug: fix python3.12 upgrade bugs --- transpire/internal/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transpire/internal/config.py b/transpire/internal/config.py index 285ab9f..7de3e16 100644 --- a/transpire/internal/config.py +++ b/transpire/internal/config.py @@ -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()