From 2a14b94995b45b796f807ac5c8247c959919ebac Mon Sep 17 00:00:00 2001 From: Zanie Date: Fri, 27 Oct 2023 12:23:51 -0500 Subject: [PATCH] Explicitly cast checkout directory to string --- python/ruff-ecosystem/ruff_ecosystem/projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ruff-ecosystem/ruff_ecosystem/projects.py b/python/ruff-ecosystem/ruff_ecosystem/projects.py index c58fa70bf8..19f92dd176 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/projects.py +++ b/python/ruff-ecosystem/ruff_ecosystem/projects.py @@ -98,7 +98,7 @@ class Repository(Serializable): command.extend( [ f"https://github.com/{self.owner}/{self.name}", - checkout_dir, + str(checkout_dir), ], )