Skip to content

Commit

Permalink
Corrected the typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbrenas committed Dec 11, 2024
1 parent d021f51 commit 5a57346
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions malariagen_data/anoph/frq_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,8 @@ def plot_frequencies_interactive_map(

# Set up interactive controls.
variants = ds["variant_label"].values
taxa = ds["cohort_taxon"].to_pandas().dropna().unique()
periods = ds["cohort_period"].to_pandas().dropna().unique()
taxa = ds["cohort_taxon"].to_pandas().dropna().unique() # type: ignore
periods = ds["cohort_period"].to_pandas().dropna().unique() # type: ignore
controls = ipywidgets.interactive(
self.plot_frequencies_map_markers,
m=ipywidgets.fixed(freq_map),
Expand Down

0 comments on commit 5a57346

Please sign in to comment.