File size: 391 Bytes
7475f0d | 1 2 3 4 5 6 7 8 9 10 11 | from anaconda_auth.client import * # noqa: F403
# The following imports address a bug in Navigator, which imported from the wrong module by mistake
from anaconda_auth.config import AnacondaCloudConfig # noqa: F401
from anaconda_auth.token import TokenInfo # noqa: F401
# This one needs to stay to raise the deprecation warning
from anaconda_cloud_auth import warn # noqa: F401
warn()
|