From ab6624bd3b78473abef381ab79e531bfaf2afb08 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 21 Dec 2024 22:22:52 +0100 Subject: [PATCH] SYT: Apply ruff/pygrep-hooks rule PGH003 PGH003 Use specific rule codes when ignoring type issues --- niworkflows/interfaces/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/niworkflows/interfaces/conftest.py b/niworkflows/interfaces/conftest.py index a8511d04bb2..46ea82b544c 100644 --- a/niworkflows/interfaces/conftest.py +++ b/niworkflows/interfaces/conftest.py @@ -9,7 +9,7 @@ import os from contextlib import contextmanager - @contextmanager # type: ignore + @contextmanager def _chdir(path): cwd = os.getcwd() os.chdir(path)