Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Jun 23, 2024
1 parent ee1e115 commit 7202323
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/halmos/sevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,11 @@ def __deepcopy__(self, memo):

def __str__(self) -> str:
return "".join(
[f"- {cond}\n" for cond in self.conditions if self.conditions[cond] and str(cond) != "True"]
[
f"- {cond}\n"
for cond in self.conditions
if self.conditions[cond] and str(cond) != "True"
]
)

def to_smt2(self) -> str:
Expand Down

0 comments on commit 7202323

Please sign in to comment.