From ac1adb909ff24763ad3b9ef0ebe9e66b958d29db Mon Sep 17 00:00:00 2001 From: Andriy Babak Date: Thu, 3 Oct 2019 16:58:45 +0300 Subject: [PATCH] Reordered imports to fix module reloading --- __init__.py | 5 ++++- clip.py | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index 35e9836..0d54483 100644 --- a/__init__.py +++ b/__init__.py @@ -23,13 +23,16 @@ ------------------------------ ''' -__version__ = '3.3.0' +__version__ = '3.3.1' try: import xml.etree.cElementTree as ET except ImportError: import xml.etree.ElementTree as ET +import utils +reload(utils) + import clip reload(clip) copy = clip.copy diff --git a/clip.py b/clip.py index 3e2b8e5..c17e7a4 100644 --- a/clip.py +++ b/clip.py @@ -28,7 +28,6 @@ import maya.cmds as cmds from . import utils, ET -reload(utils) try: import PySide2