from __future__ import annotations try: import tomllib as _toml except ImportError: import tomli as _toml def loads(text: str): return _toml.loads(text)