Skip to content

Commit 5f9cc58

Browse files
committed
fix(agent): Fix type issue in test_s3_file_storage.py
1 parent 262771a commit 5f9cc58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autogpts/autogpt/tests/unit/test_s3_file_storage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def s3_root() -> Path:
2323

2424

2525
@pytest.fixture
26-
def s3_storage_uninitialized(s3_bucket_name: str, s3_root: str) -> S3FileStorage:
26+
def s3_storage_uninitialized(s3_bucket_name: str, s3_root: Path) -> S3FileStorage:
2727
os.environ["STORAGE_BUCKET"] = s3_bucket_name
2828
storage_config = S3FileStorageConfiguration.from_env()
2929
storage_config.root = s3_root

0 commit comments

Comments
 (0)