Skip to content

Commit

Permalink
[DOP-23979] Ignore warning in ProcessStackManager class definition
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Feb 18, 2025
1 parent 7dfe9ea commit 4c48caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etl_entities/process/process_stack_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4c48caa

Please sign in to comment.