bazarr/libs/dynaconf/vendor/tomllib/__init__.py

17 lines
332 B
Python
Raw Normal View History

# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2021 Taneli Hukkinen
__all__ = (
"loads",
"load",
"TOMLDecodeError",
"dump",
"dumps",
)
from ._parser import TOMLDecodeError, load, loads
from ._writer import dump, dumps
# Pretend this exception was created here.
TOMLDecodeError.__module__ = __name__