From db1c5b4a8db44badbf0f1ec43aefe8ec577d2a27 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 3 Dec 2020 13:03:45 +0100 Subject: [PATCH] removed unused imports --- pype/modules/ftrack/actions/action_create_cust_attrs.py | 2 +- pype/modules/ftrack/lib/avalon_sync.py | 5 +---- pype/tools/launcher/models.py | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/pype/modules/ftrack/actions/action_create_cust_attrs.py b/pype/modules/ftrack/actions/action_create_cust_attrs.py index d2d60df43e..f76d794d6f 100644 --- a/pype/modules/ftrack/actions/action_create_cust_attrs.py +++ b/pype/modules/ftrack/actions/action_create_cust_attrs.py @@ -9,7 +9,7 @@ from pype.modules.ftrack.lib.avalon_sync import ( CUST_ATTR_ID_KEY, CUST_ATTR_GROUP, default_custom_attributes_definition ) from pype.api import config -from pype.lib import ApplicationManager, env_value_to_bool +from pype.lib import ApplicationManager """ This action creates/updates custom attributes. diff --git a/pype/modules/ftrack/lib/avalon_sync.py b/pype/modules/ftrack/lib/avalon_sync.py index c2bc6d2b29..671899a028 100644 --- a/pype/modules/ftrack/lib/avalon_sync.py +++ b/pype/modules/ftrack/lib/avalon_sync.py @@ -17,10 +17,7 @@ from bson.errors import InvalidId from pymongo import UpdateOne import ftrack_api from pype.api import config -from pype.lib import ( - ApplicationManager, - env_value_to_bool -) +from pype.lib import ApplicationManager log = Logger().get_logger(__name__) diff --git a/pype/tools/launcher/models.py b/pype/tools/launcher/models.py index 81d6a455d5..3e869f3e4a 100644 --- a/pype/tools/launcher/models.py +++ b/pype/tools/launcher/models.py @@ -7,7 +7,7 @@ from .actions import ApplicationAction from Qt import QtCore, QtGui from avalon.vendor import qtawesome from avalon import style, api -from pype.lib import ApplicationManager, env_value_to_bool +from pype.lib import ApplicationManager log = logging.getLogger(__name__)