Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Dec 13, 2024
1 parent 597a223 commit e32043a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/fpbase/_fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ def _norm_name(name: str) -> str:


def get_microscope(id: str = "i6WL2W") -> Microscope:
print("microscope", id)
return FPbaseClient.instance().get_microscope(id)


Expand All @@ -234,17 +233,14 @@ 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)


Expand Down

0 comments on commit e32043a

Please sign in to comment.