diff --git a/src/fpbase/_fetch.py b/src/fpbase/_fetch.py index 055803a..5980490 100644 --- a/src/fpbase/_fetch.py +++ b/src/fpbase/_fetch.py @@ -225,6 +225,7 @@ def _norm_name(name: str) -> str: def get_microscope(id: str = "i6WL2W") -> Microscope: + print("microscope", id) return FPbaseClient.instance().get_microscope(id) @@ -233,14 +234,17 @@ def get_fluorophore(name: str) -> Fluorophore: def get_filter(name: str) -> Filter: + print("filter", name) return FPbaseClient.instance().get_filter(name) def get_camera(name: str) -> Camera: + print("camera", name) return FPbaseClient.instance().get_camera(name) def get_light_source(name: str) -> LightSource: + print("light", name) return FPbaseClient.instance().get_light_source(name) diff --git a/src/fpbase/models.py b/src/fpbase/models.py index 7967a9b..baeca24 100644 --- a/src/fpbase/models.py +++ b/src/fpbase/models.py @@ -55,6 +55,7 @@ class SpectrumType(str, Enum): PD = "PD" QE = "QE" AB = "AB" + SP = "SP" def __str__(self) -> str: # pragma: no cover """Return the string representation of the enum."""