Skip to content

Commit 2b95ce6

Browse files
Fix mypy operator error with type ignore comment
1 parent fbff766 commit 2b95ce6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

malariagen_data/anoph/phenotypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ def phenotype_sample_sets(self) -> List[str]:
605605
"""
606606
Get list of sample sets that have phenotypic data available.
607607
"""
608-
all_sample_sets = self.sample_sets()["sample_set"].tolist()
608+
all_sample_sets = self.sample_sets()["sample_set"].tolist() # type: ignore[operator]
609609
phenotype_sample_sets = []
610610
base_phenotype_path = f"{self._url}v3.2/phenotypes/all"
611611
for sample_set in all_sample_sets:

0 commit comments

Comments
 (0)