We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef3d86b commit eaa9200Copy full SHA for eaa9200
Libs/Scripting/Python/Core/Python/qt/__init__.py.in
@@ -9,11 +9,11 @@ __kits_to_load = [ @QT_PYTHON_WRAPPED_LIBRARIES@ ]
9
_CTK_VERBOSE_IMPORT = False
10
11
for kit in __kits_to_load:
12
- try:
13
- exec("from PythonQt.Qt%s import *" % kit)
14
- except ImportError as detail:
15
- if _CTK_VERBOSE_IMPORT:
16
- print(detail)
+ try:
+ exec("from PythonQt.Qt%s import *" % kit)
+ except ImportError as detail:
+ if _CTK_VERBOSE_IMPORT:
+ print(detail)
17
18
if "QObject" not in locals():
19
from PythonQt.private import QObject
0 commit comments