Skip to content

Commit c7d0a54

Browse files
committed
fix ruff format
1 parent 66432ec commit c7d0a54

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

pytensor/printing.py

+8-4
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,14 @@ def debugprint(
297297
):
298298
if hasattr(var.owner, "op"):
299299
if (
300-
isinstance(var.owner.op, HasInnerGraph)
301-
or hasattr(var.owner.op, "scalar_op")
302-
and isinstance(var.owner.op.scalar_op, HasInnerGraph)
303-
) and not inner_depth and var not in inner_graph_vars:
300+
(
301+
isinstance(var.owner.op, HasInnerGraph)
302+
or hasattr(var.owner.op, "scalar_op")
303+
and isinstance(var.owner.op.scalar_op, HasInnerGraph)
304+
)
305+
and not inner_depth
306+
and var not in inner_graph_vars
307+
):
304308
inner_graph_vars.append(var)
305309
if print_op_info:
306310
op_information.update(op_debug_information(var.owner.op, var.owner))

0 commit comments

Comments
 (0)