Skip to content

Commit 8e543fc

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 679285c commit 8e543fc

File tree

4 files changed

+799
-337
lines changed

4 files changed

+799
-337
lines changed

colour_hdri/network/editor.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -682,17 +682,19 @@ def _lg_node_by_id(id_: int) -> dict | None:
682682
if node is not None:
683683
lg_node_to_node[lg_node["id"]] = node
684684
node.on_process_started.add_listener(
685-
lambda x,
686-
y=[*path, lg_node["id"]]: self._listener_on_process_started(x, y)
685+
lambda x, y=[*path, lg_node["id"]]: (
686+
self._listener_on_process_started(x, y)
687+
)
687688
)
688689
node.on_process_ended.add_listener(
689690
lambda x, y=[*path, lg_node["id"]]: self._listener_on_process_ended(
690691
x, y
691692
)
692693
)
693694
node.on_process_exception.add_listener(
694-
lambda x,
695-
y=[*path, lg_node["id"]]: self._listener_on_process_exception(x, y)
695+
lambda x, y=[*path, lg_node["id"]]: (
696+
self._listener_on_process_exception(x, y)
697+
)
696698
)
697699

698700
graph.add_node(node)

0 commit comments

Comments
 (0)