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

19 lines
318 B
Python
Raw Normal View History

2023-02-20 22:38:24 +00: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,
)