mirror of
https://github.com/searxng/searxng.git
synced 2024-11-15 01:00:12 +01:00
19 lines
301 B
Python
19 lines
301 B
Python
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
"""Compatibility with older versions"""
|
||
|
|
||
|
# pylint: disable=unused-import
|
||
|
|
||
|
__all__ = [
|
||
|
"tomllib",
|
||
|
]
|
||
|
|
||
|
import sys
|
||
|
|
||
|
# TOML (lib) compatibility
|
||
|
# ------------------------
|
||
|
|
||
|
if sys.version_info >= (3, 11):
|
||
|
import tomllib
|
||
|
else:
|
||
|
import tomli as tomllib
|