mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-15 20:24:42 +08:00
17 lines
332 B
Python
17 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__
|