Skip to content

Commit

Permalink
Merge pull request #1563 from Bastian-Krause/bst/ruff-2025
Browse files Browse the repository at this point in the history
remote/exporter: apply ruff format fixes for 2025 style guide
  • Loading branch information
Emantor authored Jan 10, 2025
2 parents 3818269 + 74ab69e commit 4c78974
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions labgrid/remote/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def _start(self, start_params):
"-Y",
f"connection: &con01# accepter: telnet(rfc2217,mode=server),tcp,{self.port}",
"-Y",
f' connector: serialdev(nouucplock=true),{start_params["path"]},{self.local.speed}n81,local', # pylint: disable=line-too-long
f" connector: serialdev(nouucplock=true),{start_params['path']},{self.local.speed}n81,local", # pylint: disable=line-too-long
"-Y",
" options:",
"-Y",
Expand All @@ -262,7 +262,7 @@ def _start(self, start_params):
"-n",
"-u",
"-C",
f'{self.port}:telnet:0:{start_params["path"]}:{self.local.speed} NONE 8DATABITS 1STOPBIT LOCAL', # pylint: disable=line-too-long
f"{self.port}:telnet:0:{start_params['path']}:{self.local.speed} NONE 8DATABITS 1STOPBIT LOCAL", # pylint: disable=line-too-long
]
self.logger.info("Starting ser2net with: %s", " ".join(cmd))
self.child = subprocess.Popen(cmd)
Expand Down

0 comments on commit 4c78974

Please sign in to comment.