From ccd5fbd16ff4e43de733c52cd84dd04374353d42 Mon Sep 17 00:00:00 2001 From: nayib-jose-gloria Date: Tue, 22 Oct 2024 12:20:42 -0400 Subject: [PATCH] mypy --- api/python/src/cellxgene_ontology_guide/supported_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/python/src/cellxgene_ontology_guide/supported_versions.py b/api/python/src/cellxgene_ontology_guide/supported_versions.py index 8dd1db8c..e59ef963 100644 --- a/api/python/src/cellxgene_ontology_guide/supported_versions.py +++ b/api/python/src/cellxgene_ontology_guide/supported_versions.py @@ -75,7 +75,7 @@ def __init__(self, version: Optional[str] = None): self.version = _version self.supported_ontologies = ontology_info[_version]["ontologies"] - self.imported_ontologies = { + self.imported_ontologies: Dict[str, str] = { imported_ontology: ontology for ontology, info in self.supported_ontologies.items() for imported_ontology in info.get("additional_ontologies", [])