usse/funda-scraper/venv/lib/python3.10/site-packages/keyring/backends/OS_X.py

14 lines
222 B
Python

"""
Backward-compatibility shim for users referencing the module
by name. Ref #487.
"""
import warnings
from .macOS import Keyring
__all__ = ['Keyring']
warnings.warn("OS_X module is deprecated.", DeprecationWarning)