mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-15 12:14:51 +08:00
16 lines
332 B
Python
16 lines
332 B
Python
# 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__
|