MCPcopy Create free account
hub / github.com/PyQt5/PyQt / __init__

Method __init__

Test/ChartView/ChatWidget.py:30–34  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

28class LoadingWidget(QLabel):
29
30 def __init__(self, *args, **kwargs):
31 super(LoadingWidget, self).__init__(*args, **kwargs)
32 self.setAlignment(Qt.AlignHCenter | Qt.AlignVCenter)
33 self._movie = QMovie("loading.gif")
34 self.setMovie(self._movie)
35
36 def deleteLater(self):
37 self._movie.stop()

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected