From 5a57346369b6ec336ed4517a73819afee92507a5 Mon Sep 17 00:00:00 2001 From: jonbrenas <51911846+jonbrenas@users.noreply.github.com> Date: Wed, 11 Dec 2024 12:02:13 +0000 Subject: [PATCH] Corrected the typing issue --- malariagen_data/anoph/frq_funcs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/malariagen_data/anoph/frq_funcs.py b/malariagen_data/anoph/frq_funcs.py index 64ccd7a2..9057c12a 100644 --- a/malariagen_data/anoph/frq_funcs.py +++ b/malariagen_data/anoph/frq_funcs.py @@ -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),