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 ce83bc3 commit b5c798cCopy full SHA for b5c798c
dandiapi/api/management/commands/collect_garbage.py
@@ -9,7 +9,7 @@
9
# but does not have a corresponding S3 blob. When using django-minio-storage, this results in
10
# a `minio.error.S3Error` being raised, but if the user is using the S3 backend from
11
# django-storages, it will raise a `FileNotFoundError` instead.
12
-upload_missing_blob_exceptions = (FileNotFoundError,)
+upload_missing_blob_exceptions: tuple[type[Exception], ...] = (FileNotFoundError,)
13
try:
14
from minio.error import S3Error
15
0 commit comments