School/.venv/lib/python3.9/site-packages/tomli/__init__.py
Kristofers Solo dba6dee19e Updated .venv
2021-11-22 17:35:39 +02:00

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"