mirror of
https://github.com/Ladebeze66/AI_agent.git
synced 2026-03-28 02:33:46 +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
|