Files
Chest a5714116ac +full refactor
+feat: configuration, progress bar, OSV
2026-01-18 13:54:14 +03:00

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)