Skip to content

Commit 77efcf5

Browse files
committed
PluginGenerator: uic fix
1 parent f5312b7 commit 77efcf5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUIQML/[SHORTNAME].py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from PyQt5.QtWidgets import *
22
'''[%AUTOCOMPLETE%]'''
3-
import uic
3+
from PyQt5 import uic
44

55
class '''[%SHORTNAME%]'''(DockWidget):
66

plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUIQML/[SHORTNAME].py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''[%AUTOCOMPLETE%]'''
2-
import uic
2+
from PyQt5 import uic
33

44
class '''[%SHORTNAME%]'''Dialog(QDialog):
55

0 commit comments

Comments
 (0)