Skip to content

Commit

Permalink
Fix reload import
Browse files Browse the repository at this point in the history
  • Loading branch information
minoue committed Oct 2, 2021
1 parent 88b8e79 commit 879b611
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions plug-ins/Rush.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"""

from __future__ import print_function
from importlib import reload
import sys
import os

Expand All @@ -14,11 +13,17 @@
from PySide2 import QtGui, QtWidgets, QtCore
import shiboken2

# For python2/3 compability
try:
from importlib import reload
except ImportError:
pass

import rush
reload(rush)

__author__ = "Michi Inoue"
__version__ = "2.7.0"
__version__ = "2.7.1"


QSS = """
Expand Down

0 comments on commit 879b611

Please sign in to comment.