mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-23 22:41:34 +00: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__
|