Skip to content

Commit

Permalink
Use string repr for title in app repr.
Browse files Browse the repository at this point in the history
  • Loading branch information
salt-die committed Oct 14, 2023
1 parent eea623c commit 9a67a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batgrl/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def __repr__(self):
f"{type(self).__name__}(\n"
f" background_char={self.background_char!r},\n"
f" background_color_pair={(*self.background_color_pair,)},\n"
f" title={self.title},\n"
f" title={self.title!r},\n"
f" double_click_timeout={self.double_click_timeout},\n"
f" render_interval={self.render_interval},\n"
f" color_theme=ColorTheme(\n"
Expand Down

0 comments on commit 9a67a52

Please sign in to comment.