Skip to content
Snippets Groups Projects
Commit 0129c23e authored by Alán Muñoz's avatar Alán Muñoz
Browse files

docs(tiler): improve typing

parent 32270ebf
No related branches found
No related tags found
No related merge requests found
...@@ -216,7 +216,7 @@ class Tiler(StepABC): ...@@ -216,7 +216,7 @@ class Tiler(StepABC):
image: da.core.Array, image: da.core.Array,
metadata: dict, metadata: dict,
parameters: TilerParameters, parameters: TilerParameters,
trap_locs=None, trap_locs: t.List[t.List[int]] = None,
): ):
""" """
Initialise Tiler Initialise Tiler
...@@ -237,7 +237,7 @@ class Tiler(StepABC): ...@@ -237,7 +237,7 @@ class Tiler(StepABC):
self.ref_channel = self.get_channel_index(parameters.ref_channel) self.ref_channel = self.get_channel_index(parameters.ref_channel)
self.trap_locs = trap_locs self.trap_locs: t.List[t.List[int]] = trap_locs
try: try:
self.z_perchannel = { self.z_perchannel = {
ch: zsect ch: zsect
...@@ -302,7 +302,7 @@ class Tiler(StepABC): ...@@ -302,7 +302,7 @@ class Tiler(StepABC):
cls, cls,
image, image,
filepath: t.Union[str, PosixPath], filepath: t.Union[str, PosixPath],
parameters: TilerParameters = None, parameters: t.Optional[TilerParameters] = None,
): ):
""" """
Instantiate Tiler from hdf5 files Instantiate Tiler from hdf5 files
......
...@@ -108,7 +108,7 @@ def _dispatch_tile_reduction(how: t.Union[int, str, t.List[int]], axis=1): ...@@ -108,7 +108,7 @@ def _dispatch_tile_reduction(how: t.Union[int, str, t.List[int]], axis=1):
raise Exception(f"Invalid reduction {how}") raise Exception(f"Invalid reduction {how}")
def tile_like(arr1, arr2): def tile_like(arr1: np.ndarray, arr2: np.ndarray):
""" """
Tile the first two dimensions of arr1 (ND) to match arr2 (2D) Tile the first two dimensions of arr1 (ND) to match arr2 (2D)
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment