PyQt5 QtWidgets QtDialog import Issue
Unsolved
Qt for Python
-
I don't know if anyone can assist me to solve the below import problem, I would be very much grateful. Thanks in advance!
runfile('C:/Users/Hello Good Morning/Desktop/Python 3 Learning/call_teacher.py', wdir='C:/Users/Hello Good Morning/Desktop/Python 3 Learning')
Traceback (most recent call last):File "C:\Users\Hello Good Morning\Desktop\Python 3 Learning\call_teacher.py", line 11, in <module>
from PyQt5.QtWidgets import QDlialog, QApplication, QTableWidgetItemImportError: cannot import name 'QDlialog' from 'PyQt5.QtWidgets' (C:\Users\Hello Good Morning\anaconda3\lib\site-packages\PyQt5\QtWidgets.pyd)
-
@SuperSuper said in PyQt5 QtWidgets QtDialog import Issue:
QDlialog
It's called QDialog, not QDlialog...
-