Skip to content

Commit c9d1123

Browse files
Merge pull request #709 from neutrinoceros/dep/upgrade-lick
2 parents df2940e + b92129d commit c9d1123

2 files changed

Lines changed: 30 additions & 5 deletions

File tree

src/nonos/api/satellite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ def __init__(
108108

109109
lick_box_kwargs: StrDict
110110
if Version(version("lick")) >= Version("0.10.0dev0"):
111-
from lick import lick_box # type: ignore[attr-defined]
111+
from lick import lick_box
112112

113113
lick_box_kwargs = {
114114
"kernel": np.sin(np.linspace(0, np.pi, kernel_length, endpoint=False)),
115115
"post_lic": "north-west-light-source" if light_source else None,
116116
"indexing": "xy",
117117
}
118118
else:
119-
from lick.lick import lick_box
119+
from lick.lick import lick_box # type: ignore[import-not-found, no-redef]
120120

121121
lick_box_kwargs = {
122122
"kernel_length": kernel_length,

uv.lock

Lines changed: 28 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)