From 4c48caacfc2440a554b30c1b0bb7f6106cedd90f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D1=80=D1=82=D1=8B=D0=BD=D0=BE=D0=B2=20=D0=9C?= =?UTF-8?q?=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=20=D0=A1=D0=B5=D1=80=D0=B3=D0=B5?= =?UTF-8?q?=D0=B5=D0=B2=D0=B8=D1=87?= Date: Tue, 18 Feb 2025 18:03:16 +0300 Subject: [PATCH] [DOP-23979] Ignore warning in ProcessStackManager class definition --- etl_entities/process/process_stack_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etl_entities/process/process_stack_manager.py b/etl_entities/process/process_stack_manager.py index 706dd9b..2a8245a 100644 --- a/etl_entities/process/process_stack_manager.py +++ b/etl_entities/process/process_stack_manager.py @@ -23,7 +23,7 @@ class ProcessStackManager: .. deprecated:: 2.0.0 """ - with warnings.catch_warnings(category=UserWarning): # noqa: WPS604 + with warnings.catch_warnings(): # noqa: WPS604 default: ClassVar[Process] = Process() # noqa: WPS462 "Default process returned by ``ProcessStackManager.get_current``" # noqa: WPS428