1# SPDX-License-Identifier: MIT 2# SPDX-FileCopyrightText: 2021 Taneli Hukkinen 3# Licensed to PSF under a Contributor Agreement. 4 5__all__ = ("loads", "load", "TOMLDecodeError") 6 7from ._parser import TOMLDecodeError, load, loads 8 9# Pretend this exception was created here. 10TOMLDecodeError.__module__ = __name__ 11