<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import sys

__all__ = ['tomllib']


if sys.version_info &gt;= (3, 11):
    import tomllib
else:  # pragma: no cover
    import tomli as tomllib
</pre></body></html>