mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-07 20:26:54 +00:00
10 lines
255 B
Python
10 lines
255 B
Python
from __future__ import annotations
|
|
|
|
|
|
class SetuptoolsDeprecationWarning(Warning):
|
|
"""
|
|
Base class for warning deprecations in ``setuptools``
|
|
|
|
This class is not derived from ``DeprecationWarning``, and as such is
|
|
visible by default.
|
|
"""
|