10 lines
167 B
Python
10 lines
167 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
try:
|
||
|
|
import tomllib as _toml
|
||
|
|
except ImportError:
|
||
|
|
import tomli as _toml
|
||
|
|
|
||
|
|
def loads(text: str):
|
||
|
|
return _toml.loads(text)
|