Skip to content

Commit 5a57346

Browse files
committed
Corrected the typing issue
1 parent d021f51 commit 5a57346

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

malariagen_data/anoph/frq_funcs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,8 +553,8 @@ def plot_frequencies_interactive_map(
553553

554554
# Set up interactive controls.
555555
variants = ds["variant_label"].values
556-
taxa = ds["cohort_taxon"].to_pandas().dropna().unique()
557-
periods = ds["cohort_period"].to_pandas().dropna().unique()
556+
taxa = ds["cohort_taxon"].to_pandas().dropna().unique() # type: ignore
557+
periods = ds["cohort_period"].to_pandas().dropna().unique() # type: ignore
558558
controls = ipywidgets.interactive(
559559
self.plot_frequencies_map_markers,
560560
m=ipywidgets.fixed(freq_map),

0 commit comments

Comments
 (0)