From 5e7703ed5f8efe2e5a6187ed2221ba8c080d80d2 Mon Sep 17 00:00:00 2001 From: r-spiewak <63987228+r-spiewak@users.noreply.github.com> Date: Sat, 29 Nov 2025 20:42:54 -0500 Subject: [PATCH] Add pylint ignore for arg deprecated in 3.12.4 --- tests/test_utils/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_utils/conftest.py b/tests/test_utils/conftest.py index 8a10943..444352d 100644 --- a/tests/test_utils/conftest.py +++ b/tests/test_utils/conftest.py @@ -33,7 +33,9 @@ def onerror(func, path, exc_info): # pylint: disable=unused-argument except Exception: # pylint: disable=broad-exception-caught pass # Last resort: ignore if still fails - shutil.rmtree(dir_path, onerror=onerror) + shutil.rmtree( # pylint: disable=deprecated-argument + dir_path, onerror=onerror + ) @pytest.fixture