From 1133fd0c2f4972c55fb3c4b5f68eea4d771e75ab Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Jun 2026 03:11:24 +0000 Subject: [PATCH 1/2] Plan lint fix workflow --- src/remote_svc_ctrl/ioc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/remote_svc_ctrl/ioc.py b/src/remote_svc_ctrl/ioc.py index 768274b..02af3a3 100644 --- a/src/remote_svc_ctrl/ioc.py +++ b/src/remote_svc_ctrl/ioc.py @@ -377,7 +377,9 @@ def main(): "--host", default=None, ) - parser.add_argument("-v", "--version", action="version", version=f"remote-svc-ctrl {__version__}") + parser.add_argument( + "-v", "--version", action="version", version=f"remote-svc-ctrl {__version__}" + ) args = parser.parse_args() create_ioc(args.prefix, args.service, args.host) From 50584dd72249903158ec485ce281206e2d793534 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Jun 2026 03:11:46 +0000 Subject: [PATCH 2/2] Fix Ruff lint issues in IOC module --- src/remote_svc_ctrl/ioc.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/remote_svc_ctrl/ioc.py b/src/remote_svc_ctrl/ioc.py index 02af3a3..fa0e61d 100644 --- a/src/remote_svc_ctrl/ioc.py +++ b/src/remote_svc_ctrl/ioc.py @@ -10,9 +10,8 @@ from softioc import builder, softioc from softioc.asyncio_dispatcher import AsyncioDispatcher -from .systemd import parse_systemctl_status, run_systemctl - from ._version import __version__ # noqa: F401 +from .systemd import parse_systemctl_status, run_systemctl log = logging.getLogger(__name__)