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

fix import order to fix failing precommit check in CI pipeline

parent 8475d998
No related branches found
No related tags found
1 merge request!189Draft: Resolve "Daskify LISA Instrument"
Pipeline #371663 failed
......@@ -4,16 +4,18 @@ To create a fir filter operating on dask arrays, use the `make_filter_fir_dask`
"""
from __future__ import annotations
from typing import TypeAlias, Callable
import numpy as np
from typing import Callable, TypeAlias
import dask
import dask.array as da
import numpy as np
from lisainstrument.fir_filters_numpy import (
SemiLocalMapType,
EdgeHandling,
DefFilterFIR,
EdgeHandling,
FIRCoreOp,
SemiLocalMapType,
)
......
......@@ -4,11 +4,12 @@ To create a fir filter operating on numpy arrays, use the `make_filter_fir_numpy
"""
from __future__ import annotations
from enum import Enum
from typing import Callable, Protocol, TypeAlias
from attrs import field, frozen
import numpy as np
from attrs import field, frozen
from scipy.signal import convolve
......
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