You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/dynaconf/vendor/tomllib/__init__.py

17 lines
332 B

# 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__