Skip to content

Commit

Permalink
Fix missing closing brace in PyvexArch.__repr__
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Nov 1, 2023
1 parent 010bfdb commit 331643d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyvex/arches.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, name: str, bits: int, memory_endness: str):
self.vex_archinfo["endness"] = vex_endness_from_string("VexEndnessBE")

def __repr__(self):
return f"<PyvexArch {self.name}"
return f"<PyvexArch {self.name}>"

@property
def vex_name_small(self):
Expand Down

0 comments on commit 331643d

Please sign in to comment.