mirror of
https://github.com/Ladebeze66/llm_lab.git
synced 2025-12-16 21:57:45 +01:00
10 lines
141 B
Python
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
|