Skip to content

Commit

Permalink
Remove unnecessary parentheses
Browse files Browse the repository at this point in the history
Ref. #609, #765
  • Loading branch information
treiher committed Sep 13, 2021
1 parent ab41235 commit 77cbd9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rflx/model/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def has_exceptions(self) -> bool:
return any(
isinstance(a, (stmt.Append, stmt.Extend, stmt.Write))
or (
isinstance(a, (stmt.Assignment))
isinstance(a, stmt.Assignment)
and (
a.expression.findall(
lambda x: isinstance(
Expand Down

0 comments on commit 77cbd9b

Please sign in to comment.