Fixed f-string
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Guillem Borrell 2024-06-11 17:58:01 +02:00
parent 34245ed004
commit 73ee66db44

View file

@ -22,7 +22,7 @@ class UserDB(DDB):
super().__init__(storage_engine, path, gcs_access, gcs_secret, bucket, **kwargs)
if storage_engine == StorageEngines.gcs:
self.path_prefix = "gcs://{bucket}/users"
self.path_prefix = f"gcs://{bucket}/users"
elif storage_engine == StorageEngines.local:
self.path_prefix = path / "users"