We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a847426 commit 0533c33Copy full SHA for 0533c33
metamist/audit/audit_upload_bucket.py
@@ -58,11 +58,11 @@
58
def get_sequencing_types():
59
"""Return the list of sequencing types from the enum table."""
60
logging.getLogger().setLevel(logging.WARN)
61
- sequencing_types = query( # pylint: disable=unsubscriptable-object
+ sequencing_types = query(
62
SEQUENCING_TYPES_QUERY
63
)
64
logging.getLogger().setLevel(logging.INFO)
65
- return sequencing_types['enum']['sequencingType']
+ return sequencing_types['enum']['sequencingType'] # pylint: disable=unsubscriptable-object
66
67
68
def audit_upload_bucket(
0 commit comments