hacking-jack's picture
Upload 1579 files
8070315 verified
raw
history blame contribute delete
165 Bytes
import sys
__all__ = ['tomllib']
if sys.version_info >= (3, 11):
import tomllib
else: # pragma: no cover
from setuptools.extern import tomli as tomllib