Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Конструктор MainMenu #3

Open
dakone22 opened this issue Nov 23, 2022 · 1 comment
Open

Конструктор MainMenu #3

dakone22 opened this issue Nov 23, 2022 · 1 comment

Comments

@dakone22
Copy link

dakone22 commented Nov 23, 2022

class MainMenu(QMainWindow, Ui_MainMenu):
def __init__(self, parent=None):
super().__init__(parent)
self.setupUi(self)
self.parent = parent

Скорее всего, тут явно лишнее self.parent = parent, потому что ты уже, вроде, вызываешь конструктор базового класса через super().__init__(parent), причём уже передаёшь туда parent.

И вообще не стоит использовать множественное наследование тут.
Лучше читать документацию и делать так просто и понятно:

self.ui = Ui_MainMenu()
self.ui.setupUi(self)
@dakone22
Copy link
Author

dakone22 commented Nov 23, 2022

def __init__(self, parent=None):
super().__init__()
self.setupUi(self)
self.parent = parent

Также лучше super().__init__(parent) и без self.parent = parent
И также вместо множественного наследования лучше:

self.ui = Ui_MainWindow()
self.ui.setupUi(self)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant