-
- Notifications
You must be signed in to change notification settings - Fork 41
Closed
Labels
Description
Describe the bug
missing closing angle-bracket (>) in MouseButton event's __str__.
To Reproduce
def __str__(self) -> str: return "<type=%r, position=(x=%i, y=%i), tile=(x=%i, y=%i), button=%r)" % ( self.type, *self.position, *self.tile, MouseButton(self.button), ) Expected behavior
def __str__(self) -> str: return "<type=%r, position=(x=%i, y=%i), tile=(x=%i, y=%i), button=%r)>" % ( self.type, *self.position, *self.tile, MouseButton(self.button), ) - tcod version 19.3.1