Skip to content
Snippets Groups Projects
Commit 8475d998 authored by Wolfgang Kastaun's avatar Wolfgang Kastaun
Browse files

Fix type annotations in new dask FIR filter module

parent a9ecb979
No related branches found
No related tags found
1 merge request!189Draft: Resolve "Daskify LISA Instrument"
Pipeline #371660 failed
This commit is part of merge request !189. Comments created here will be created in the context of that merge request.
......@@ -21,8 +21,8 @@ def semilocal_map_dask(
op: SemiLocalMapType,
bound_left: EdgeHandling,
bound_right: EdgeHandling,
data: dask.array,
) -> dask.array:
data: dask.array.Array,
) -> dask.array.Array:
"""Apply a semi local map to dask array and employ boundary conditions.
Arguments:
......@@ -57,7 +57,7 @@ def semilocal_map_dask(
return ext
FilterFirDaskType: TypeAlias = Callable[[dask.array], dask.array]
FilterFirDaskType: TypeAlias = Callable[[dask.array.Array], dask.array.Array]
def make_filter_fir_dask(
......
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