fix str
All checks were successful
/ job (push) Successful in 1m6s

This commit is contained in:
Marc Beninca 2024-06-10 18:34:11 +02:00
parent 2eb8792cb4
commit a757855b38
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -23,7 +23,7 @@ class Projects:
for variable in GROUP_AND_NAME:
if value := self.environment.get(variable, None):
path = Path(value)
self.group = path.parent
self.group = str(path.parent)
self.name = path.name
# url
for variable in SERVER_URL: