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 8c1f6d1 commit d76128fCopy full SHA for d76128f
mp_api/client/core/client.py
@@ -506,7 +506,7 @@ def _query_resource(
506
for page in pages:
507
for obj in page.get("Contents", []):
508
key = obj.get("Key")
509
- if key:
+ if key and "manifest" not in key:
510
keys.append(key)
511
512
if len(keys) < 1:
@@ -533,7 +533,6 @@ def _query_resource(
533
"fields": fields,
534
}
535
for key in keys
536
- if "manifest" not in key
537
538
539
# Setup progress bar
@@ -948,6 +947,7 @@ def _multi_thread(
948
947
else:
949
size = 1
950
progress_bar.update(size)
+
951
return_data.append((data, subtotal, future.crit_ind)) # type: ignore
952
953
# Populate more futures to replace finished
0 commit comments