mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
10 lines
299 B
Python
10 lines
299 B
Python
"""A lil' TOML parser."""
|
|
|
|
__all__ = ("loads", "load", "TOMLDecodeError")
|
|
__version__ = "1.2.2" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
|
|
|
|
from tomli._parser import TOMLDecodeError, load, loads
|
|
|
|
# Pretend this exception was created here.
|
|
TOMLDecodeError.__module__ = "tomli"
|