Skip to content

Commit 0bf66de

Browse files
committed
tests: Fix f-string lint error in mpremote bridge.
1 parent fd7145b commit 0bf66de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/runner/mpremote_bridge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def run_script(
144144
mount_dir = self._driver_dir(driver_name)
145145
else:
146146
# When mounting lib/, add sub-paths for each dependency
147-
extra_paths = f"import sys\n"
147+
extra_paths = "import sys\n"
148148
for child in mount_dir.iterdir():
149149
if child.is_dir() and not child.name.startswith("."):
150150
extra_paths += f"sys.path.insert(0, '/remote/{child.name}')\n"

0 commit comments

Comments
 (0)