From 73ee66db44f20267f649d406e9a6394c4b41ca3c Mon Sep 17 00:00:00 2001 From: Guillem Borrell Date: Tue, 11 Jun 2024 17:58:01 +0200 Subject: [PATCH] Fixed f-string --- src/hellocomputer/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hellocomputer/users.py b/src/hellocomputer/users.py index 555f603..0c2142c 100644 --- a/src/hellocomputer/users.py +++ b/src/hellocomputer/users.py @@ -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"