Skip to content

Commit

Permalink
Reordered imports to fix module reloading
Browse files Browse the repository at this point in the history
  • Loading branch information
ababak committed Oct 3, 2019
1 parent cdb8b5d commit ac1adb9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import maya.cmds as cmds

from . import utils, ET
reload(utils)

try:
import PySide2
Expand Down

0 comments on commit ac1adb9

Please sign in to comment.