From e21969e9269b10b367d24895e90b8390e7264207 Mon Sep 17 00:00:00 2001 From: Brooks Travis Date: Tue, 3 Feb 2026 11:05:13 -0600 Subject: [PATCH] Fix linting error in SSH tunnel subprocess call --- src/folio_data_import/_postgres.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/folio_data_import/_postgres.py b/src/folio_data_import/_postgres.py index 7ce922b..5220776 100644 --- a/src/folio_data_import/_postgres.py +++ b/src/folio_data_import/_postgres.py @@ -109,7 +109,7 @@ def ssh_tunnel( ) -> Iterator[int]: local_port = _free_port() - proc = subprocess.Popen( + proc = subprocess.Popen( # noqa: S603 [ ssh_path or "ssh", "-N",