usse/funda-scraper/venv/lib/python3.10/site-packages/keyring/util/properties.py

19 lines
318 B
Python

"""
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,
)