himanshud2611's picture
Upload folder using huggingface_hub
60e3a80 verified
raw
history blame contribute delete
255 Bytes
from __future__ import annotations
import sys
if sys.version_info >= (3, 11):
from tomllib import TOMLDecodeError, load, loads
else:
from tomli import TOMLDecodeError, load, loads
__all__ = [
'TOMLDecodeError',
'load',
'loads',
]