Skip to content

Commit 97ebabf

Browse files
committed
style(python): fix flake8 warning on python 3.12
[no changelog]
1 parent bcb0ea1 commit 97ebabf

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)