If you use Pylint for code that uses PyQt5
E0611: No name 'QWidget' in module 'foo.bar' (no-name-in-module)
I get an error like this. To prevent such errors, put the following settings in the pylintrc
file.
[MASTER]
extension-pkg-whitelist=PyQt5
Recommended Posts