Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
benhammondmusic committed May 24, 2024
1 parent 7733f6c commit 06427b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/datasources/chr.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,10 @@ def get_float_cols() -> Dict[str, List[str]]:
**het_to_source_select_topic_all_to_race_prefix_map,
**het_to_source_additional_topic_all_to_race_prefix_map,
}.get(topic_prefix)
source_all_col = list(source_dict.keys())[0] if source_dict is not None else None

if source_dict is None:
continue
source_all_col = list(source_dict.keys())[0]

rate_suffix = ''
if source_per_100k in source_all_col:
Expand Down

0 comments on commit 06427b9

Please sign in to comment.