Skip to content

Commit

Permalink
SDEV-4409 - quiet typing suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinbleile committed Jun 26, 2024
1 parent 14a3fcf commit 3e3a4c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphkb/genes.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ def get_gene_information(
result = []
for gene_name in gene_names:
equivalent = convert_to_rid_set(get_equivalent_features(graphkb_conn, gene_name))
row = {"name": gene_name}
row: Dict[str, Any] = {"name": gene_name}
flagged = False
for flag in gene_flags:
# make smaller JSON to upload since all default to false already
Expand Down

0 comments on commit 3e3a4c2

Please sign in to comment.