remove unused import in ayon core

This commit is contained in:
Jakub Trllo 2024-04-10 11:04:48 +02:00
parent 3c73c17627
commit 640bbaadec
7 changed files with 1 additions and 9 deletions

View file

@ -2,7 +2,6 @@ from maya import cmds
import pyblish.api import pyblish.api
from ayon_core.pipeline.publish import ( from ayon_core.pipeline.publish import (
ValidateContentsOrder,
RepairContextAction, RepairContextAction,
PublishValidationError PublishValidationError
) )

View file

@ -5,7 +5,7 @@ import sys
import six import six
import random import random
import string import string
from collections import OrderedDict, defaultdict from collections import defaultdict
from ayon_core.settings import get_current_project_settings from ayon_core.settings import get_current_project_settings
from ayon_core.lib import ( from ayon_core.lib import (

View file

@ -3,7 +3,6 @@
import os import os
import attr import attr
import json import json
import re
import pyblish.api import pyblish.api

View file

@ -14,7 +14,6 @@ from .exceptions import (
TemplateMissingKey, TemplateMissingKey,
AnatomyTemplateUnsolved, AnatomyTemplateUnsolved,
) )
from .roots import RootItem
_PLACEHOLDER = object() _PLACEHOLDER = object()

View file

@ -1,7 +1,6 @@
"""Core pipeline functionality""" """Core pipeline functionality"""
import os import os
import types
import logging import logging
import platform import platform
import uuid import uuid
@ -21,7 +20,6 @@ from .anatomy import Anatomy
from .template_data import get_template_data_with_names from .template_data import get_template_data_with_names
from .workfile import ( from .workfile import (
get_workdir, get_workdir,
get_workfile_template_key,
get_custom_workfile_template_by_string_context, get_custom_workfile_template_by_string_context,
) )
from . import ( from . import (

View file

@ -13,7 +13,6 @@ Resources:
""" """
import os import os
import re
import json import json
import logging import logging

View file

@ -3,8 +3,6 @@ import platform
import subprocess import subprocess
from string import Formatter from string import Formatter
import ayon_api
from ayon_core.pipeline import ( from ayon_core.pipeline import (
Anatomy, Anatomy,
LauncherAction, LauncherAction,