Skip to content

Commit

Permalink
Delete Qt.py inside this repo
Browse files Browse the repository at this point in the history
  • Loading branch information
minoue committed Oct 12, 2016
1 parent 0fff2ca commit 39477ed
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 326 deletions.
8 changes: 1 addition & 7 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
try:
# Try import Qt.py from global site-package, if not import copy of Qt.py
# in a current directory
import Qt
except ImportError:
from app import Qt

import Qt
import app
reload(app)

Expand Down
301 changes: 0 additions & 301 deletions app/Qt.py

This file was deleted.

7 changes: 1 addition & 6 deletions app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
try:
# Try import Qt.py from global site-package, if not import copy of Qt.py
# in a current directory
import Qt
except ImportError:
from . import Qt
from preference import miExecPref
import maya.cmds as cmds
import miExec
Expand All @@ -12,6 +6,7 @@
import json
import imp
import os
import Qt

reload(miExecPref)
reload(miExec)
Expand Down
7 changes: 1 addition & 6 deletions app/customWidgets.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
try:
# Try import Qt.py from global site-package, if not import copy of Qt.py
# in a current directory
import Qt
except ImportError:
from . import Qt
import Qt


class CustomQLineEdit(Qt.QtWidgets.QLineEdit):
Expand Down
7 changes: 1 addition & 6 deletions app/miExec.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
try:
# Try import Qt.py from global site-package, if not import copy of Qt.py
# in a current directory
import Qt
except ImportError:
from . import Qt
import maya.cmds as cmds
import maya.mel as mel
import json
import os
import Qt
import preference
import customWidgets
from pymel.all import mel as pa
Expand Down

0 comments on commit 39477ed

Please sign in to comment.