Skip to content

Commit 914e2ed

Browse files
committed
Fix reformatting issues
1 parent 6f49609 commit 914e2ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pdl/pdl_interpreter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,9 +918,9 @@ def process_condition_of(
918918
EXPR_END_STRING = "}"
919919

920920

921-
def process_expr(
921+
def process_expr( # pylint: disable=too-many-return-statements
922922
scope: ScopeType, expr: Any, loc: LocationType
923-
) -> Any: # pylint: disable=too-many-return-statements
923+
) -> Any:
924924
result: Any
925925
if isinstance(expr, LocalizedExpression):
926926
return process_expr(scope, expr.expr, loc)

0 commit comments

Comments
 (0)