Mehrer Vererbungs -Metaclass -Konflikt

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Mehrer Vererbungs -Metaclass -Konflikt

by Guest » 31 Jan 2025, 11:52

Ich brauche eine doppelte Vererbung für eine Klasse.

Code: Select all

from PyQt5.QtGui import QStandardItem
from configparser import ConfigParser

class FinalClass(ConfigParser, QStandardItem):
def __init__(self, param):
ConfigParser.__init__(self)
QStandardItem.__init__(self)

Top