mirror of https://github.com/morpheus65535/bazarr
13 lines
320 B
Python
13 lines
320 B
Python
import warnings
|
|
from .base import Registry
|
|
|
|
__author__ = "Artur Barseghyan"
|
|
__copyright__ = "2013-2021 Artur Barseghyan"
|
|
__license__ = "MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later"
|
|
__all__ = ("Registry",)
|
|
|
|
warnings.warn(
|
|
"The `Registry` class is moved from `tld.registry` to `tld.base`.",
|
|
DeprecationWarning,
|
|
)
|