Skip to content

Commit 0533c33

Browse files
committed
Lint fix on a comment
1 parent a847426 commit 0533c33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

metamist/audit/audit_upload_bucket.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@
5858
def get_sequencing_types():
5959
"""Return the list of sequencing types from the enum table."""
6060
logging.getLogger().setLevel(logging.WARN)
61-
sequencing_types = query( # pylint: disable=unsubscriptable-object
61+
sequencing_types = query(
6262
SEQUENCING_TYPES_QUERY
6363
)
6464
logging.getLogger().setLevel(logging.INFO)
65-
return sequencing_types['enum']['sequencingType']
65+
return sequencing_types['enum']['sequencingType'] # pylint: disable=unsubscriptable-object
6666

6767

6868
def audit_upload_bucket(

0 commit comments

Comments
 (0)