Files

10 lines
167 B
Python
Raw Permalink Normal View History

2026-01-18 13:54:14 +03:00
from __future__ import annotations
try:
import tomllib as _toml
except ImportError:
import tomli as _toml
def loads(text: str):
return _toml.loads(text)