We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff013b commit 1bcc63dCopy full SHA for 1bcc63d
.github/workflows/main.yml
@@ -36,6 +36,8 @@ jobs:
36
python-version:
37
- "3.10"
38
- "3.11"
39
+ - "3.12"
40
+ - "3.13"
41
steps:
42
- uses: actions/checkout@v4
43
- name: Set up Python ${{ matrix.python-version }}
exodus/exodus/core/storage.py
@@ -38,7 +38,7 @@ def clear_prefix(self, prefix=None):
for obj in objects:
self.minio_client.remove_object(settings.MINIO_STORAGE_MEDIA_BUCKET_NAME, obj.object_name)
except MinioException:
- logging.exception(f"An error occured with MinIO while clearing prefix '{ prefix }'")
+ logging.exception(f"An error occured with MinIO while clearing prefix '{prefix}'")
def put_file(self, local_path, remote_name):
44
"""
0 commit comments