From 1cebb112bd8a3436a3ac36b4a35ecb7b9d634420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <alan.munoz@ed.ac.uk> Date: Tue, 21 Feb 2023 17:02:14 +0000 Subject: [PATCH] docs(tiler): remove image typing --- src/aliby/tile/tiler.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/aliby/tile/tiler.py b/src/aliby/tile/tiler.py index aaaa5474..0ed5e6b5 100644 --- a/src/aliby/tile/tiler.py +++ b/src/aliby/tile/tiler.py @@ -300,9 +300,7 @@ class Tiler(StepABC): @classmethod def from_h5( cls, - image: t.Union[ - ImageLocalOME, ImageDir - ], # TODO provide baseclass instead + image, filepath: t.Union[str, PosixPath], parameters: TilerParameters = None, ): @@ -458,7 +456,7 @@ class Tiler(StepABC): An index for a channel """ traps = [] - # get OMERO image + # get image full = self.get_tc(tp, c) for trap in self.trap_locs: # pad trap if necessary -- GitLab