Skip to content

Commit c3d9499

Browse files
committed
style(python): fix flake8 warning on python 3.12
1 parent 44be446 commit c3d9499

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/src/trezorlib/debuglink.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ def visible_screen(self) -> str:
156156
********************
157157
ICON_CANCEL, -, CONFIRM
158158
"""
159-
title_separator = f"\n{20*'-'}\n"
160-
btn_separator = f"\n{20*'*'}\n"
159+
title_separator = f"\n{20 * '-'}\n"
160+
btn_separator = f"\n{20 * '*'}\n"
161161

162162
visible = ""
163163
if self.title():

0 commit comments

Comments
 (0)