Relative Content

Tag Archive for pythonpackage

How to resolve “No module named ‘tablewidget'” error in PyQt6 application when using promoted classes with Briefcase?

I have created an application using PyQt6 and integrated a QTableWidget in my UI using Qt Designer. I promoted this QTableWidget to my custom class TableWidget. The application works fine when running normally, but when I try to package it using Briefcase, I get the following error:ModuleNotFoundError: No module named ‘tablewidget’
How can I resolve this issue and ensure that my promoted classes are correctly recognized when packaging with Briefcase? Any help or pointers would be greatly appreciated.