2025-03-25 17:06:35 +01:00

10 lines
141 B
Python

import sys
__all__ = ['tomllib']
if sys.version_info >= (3, 11):
import tomllib
else: # pragma: no cover
import tomli as tomllib