summaryrefslogtreecommitdiff
path: root/tools/pyboard.py
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2025-02-18 10:01:09 +0100
committerChristian Clauss <cclauss@me.com>2025-02-25 13:02:49 +0100
commitdc2fcfcc5511a371ff684f7d7772e7a7b479246d (patch)
tree72ba38184b3291afd41200da2a8a482868308a6a /tools/pyboard.py
parent3f0dd13d931c88a759a779853dfeaee566f0e79a (diff)
all: Upgrade to ruff v0.9.6.
Signed-off-by: Christian Clauss <cclauss@me.com>
Diffstat (limited to 'tools/pyboard.py')
-rwxr-xr-xtools/pyboard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pyboard.py b/tools/pyboard.py
index 0cf5b3d46..d49365f61 100755
--- a/tools/pyboard.py
+++ b/tools/pyboard.py
@@ -530,7 +530,7 @@ class Pyboard:
def repr_consumer(b):
buf.extend(b.replace(b"\x04", b""))
- cmd = "import os\nfor f in os.ilistdir(%s):\n" " print(repr(f), end=',')" % (
+ cmd = "import os\nfor f in os.ilistdir(%s):\n print(repr(f), end=',')" % (
("'%s'" % src) if src else ""
)
try: