We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43540db + 4e258ba commit 1681cdcCopy full SHA for 1681cdc
colour_hdri/network/nodes.py
@@ -1285,7 +1285,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
1285
import cv2 # noqa: PLC0415
1286
import lensfunpy # noqa: PLC0415
1287
1288
- database = lensfunpy.Database()
+ database = lensfunpy.Database() # pyright: ignore
1289
1290
camera_make = exif_group["Make"]
1291
camera_model = exif_group["Camera Model Name"]
@@ -1334,7 +1334,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
1334
aperture,
1335
distance,
1336
pixel_format=np.float32,
1337
- flags=lensfunpy.ModifyFlags.ALL,
+ flags=lensfunpy.ModifyFlags.ALL, # pyright: ignore
1338
)
1339
1340
output_image = input_image
0 commit comments