Skip to content

Commit 74ab69e

Browse files
remote/exporter: apply ruff format fixes
This change is caused by updating ruff 0.8.6 -> 0.9.0. The changelog reads: "Ruff now formats your code according to the 2025 style guide. As a result, your code might now get formatted differently. See the formatter section for a detailed list of changes." [1] [1] https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md Signed-off-by: Bastian Krause <bst@pengutronix.de>
1 parent 3818269 commit 74ab69e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

labgrid/remote/exporter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def _start(self, start_params):
249249
"-Y",
250250
f"connection: &con01# accepter: telnet(rfc2217,mode=server),tcp,{self.port}",
251251
"-Y",
252-
f' connector: serialdev(nouucplock=true),{start_params["path"]},{self.local.speed}n81,local', # pylint: disable=line-too-long
252+
f" connector: serialdev(nouucplock=true),{start_params['path']},{self.local.speed}n81,local", # pylint: disable=line-too-long
253253
"-Y",
254254
" options:",
255255
"-Y",
@@ -262,7 +262,7 @@ def _start(self, start_params):
262262
"-n",
263263
"-u",
264264
"-C",
265-
f'{self.port}:telnet:0:{start_params["path"]}:{self.local.speed} NONE 8DATABITS 1STOPBIT LOCAL', # pylint: disable=line-too-long
265+
f"{self.port}:telnet:0:{start_params['path']}:{self.local.speed} NONE 8DATABITS 1STOPBIT LOCAL", # pylint: disable=line-too-long
266266
]
267267
self.logger.info("Starting ser2net with: %s", " ".join(cmd))
268268
self.child = subprocess.Popen(cmd)

0 commit comments

Comments
 (0)