Forgot f-string
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Guillem Borrell 2024-06-11 19:08:11 +02:00
parent e3ffc009d5
commit e398068c0e

View file

@ -24,7 +24,7 @@ class SessionDB(DDB):
self.sid = sid
# Override storage engine for sessions
if storage_engine == StorageEngines.gcs:
self.path_prefix = "gcs://{bucket}/sessions/{sid}"
self.path_prefix = f"gcs://{bucket}/sessions/{sid}"
elif storage_engine == StorageEngines.local:
self.path_prefix = path / "sessions" / sid