We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4a9f58 commit c6cfff9Copy full SHA for c6cfff9
2 files changed
.pre-commit-config.yaml
@@ -10,7 +10,7 @@ repos:
10
- id: end-of-file-fixer
11
- id: trailing-whitespace
12
- repo: https://github.com/astral-sh/ruff-pre-commit
13
- rev: v0.3.4
+ rev: v0.15.8
14
hooks:
15
- id: ruff-format
16
- id: ruff
examples/usb_host_mouse_simpletest.py
@@ -47,7 +47,7 @@
47
48
# add pressed buttons to out str
49
if pressed_btns is not None and len(pressed_btns) > 0:
50
- out_str += f" {" ".join(pressed_btns)}"
+ out_str += f" {' '.join(pressed_btns)}"
51
52
# update the text label with the new coordinates
53
# and buttons being pressed
0 commit comments