9 lines
138 B
Python
9 lines
138 B
Python
|
__all__ = ("tomllib",)
|
||
|
|
||
|
import sys
|
||
|
|
||
|
if sys.version_info >= (3, 11):
|
||
|
import tomllib
|
||
|
else:
|
||
|
from pip._vendor import tomli as tomllib
|