Skip to content

Commit

Permalink
fix noqa marks for multiline import
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Aug 1, 2024
1 parent b41d299 commit 171646d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,39 +327,39 @@ def _print(message: str):
elif os.getenv("SSL_CERT_FILE") != certifi.where():
_print("--- your system is set to use custom CA certificate bundle.")

from ayon_api import (
from ayon_api import ( # noqa E402
get_base_url,
set_default_settings_variant,
get_addons_studio_settings,
) # noqa E402
from ayon_api.constants import (
)
from ayon_api.constants import ( # noqa E402
SERVER_URL_ENV_KEY,
SERVER_API_ENV_KEY,
DEFAULT_VARIANT_ENV_KEY,
SITE_ID_ENV_KEY,
) # noqa E402
)
from ayon_common import is_staging_enabled, is_dev_mode_enabled # noqa E402
from ayon_common.connection.credentials import (
from ayon_common.connection.credentials import ( # noqa E402
ask_to_login_ui,
add_server,
need_server_or_login,
load_environments,
create_global_connection,
confirm_server_login,
show_invalid_credentials_ui,
) # noqa E402
from ayon_common.distribution import (
)
from ayon_common.distribution import ( # noqa E402
AyonDistribution,
BundleNotFoundError,
show_missing_bundle_information,
show_installer_issue_information,
UpdateWindowManager,
) # noqa E402
)

from ayon_common.utils import (
from ayon_common.utils import ( # noqa E402
store_current_executable_info,
get_local_site_id,
) # noqa E402
)
from ayon_common.startup import show_startup_error # noqa E402


Expand Down

0 comments on commit 171646d

Please sign in to comment.