Skip to content

Commit 1681cdc

Browse files
committed
Merge branch 'feature/v0.2.7' into develop
2 parents 43540db + 4e258ba commit 1681cdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

colour_hdri/network/nodes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
12851285
import cv2 # noqa: PLC0415
12861286
import lensfunpy # noqa: PLC0415
12871287

1288-
database = lensfunpy.Database()
1288+
database = lensfunpy.Database() # pyright: ignore
12891289

12901290
camera_make = exif_group["Make"]
12911291
camera_model = exif_group["Camera Model Name"]
@@ -1334,7 +1334,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
13341334
aperture,
13351335
distance,
13361336
pixel_format=np.float32,
1337-
flags=lensfunpy.ModifyFlags.ALL,
1337+
flags=lensfunpy.ModifyFlags.ALL, # pyright: ignore
13381338
)
13391339

13401340
output_image = input_image

0 commit comments

Comments
 (0)