Source code for koapy.utils.logging.pyside2.QWidgetLogging
from koapy.compat.pyside2.QtWidgets import QWidget
from koapy.utils.logging.Logging import Logging
[docs]class QWidgetLogging(QWidget, Logging, metaclass=QWidgetLoggingMeta):
def __init__(self, *args, **kwargs):
QWidget.__init__(self, *args, **kwargs)
Logging.__init__(self)