Skip to content

Commit

Permalink
fix flake8 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Technologicat committed Sep 26, 2024
1 parent 62ef93c commit 037f585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcpyrate/unparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ def _IfExp(self, t):
self.write(")")

def _Set(self, t):
assert(t.elts) # should be at least one element
assert t.elts # should be at least one element
self.write("{")
interleave(lambda: self.write(", "), self.dispatch, t.elts)
self.write("}")
Expand Down

0 comments on commit 037f585

Please sign in to comment.