19 lines
318 B
Python
Raw Normal View History

2023-02-20 23:38:24 +01:00
"""
Backward compat shim
"""
import warnings
from .._compat import properties
NonDataProperty = properties.NonDataProperty
ClassProperty = properties.classproperty
warnings.warn(
"Properties from keyring.util are no longer supported. "
"Use jaraco.classes.properties instead.",
DeprecationWarning,
)