Skip to content

Commit

Permalink
keep the compatibility with old version (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
edcoll authored Dec 9, 2024
1 parent 3f3bd68 commit b194d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_storage(storage_backend):
"""
if storage_backend == 'azure':
return AzureStorage()
if storage_backend == 's3':
if storage_backend in ['s3', 'aws']:
return S3Storage()

raise ValueError("Unsupported storage backend")

0 comments on commit b194d26

Please sign in to comment.