MCPcopy
hub / github.com/PyQt5/PyQt / __init__

Method __init__

QPropertyAnimation/RlatticeEffect.py:140–146  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

138
139class Window(QWidget): # type: ignore
140 def __init__(self, *args, **kwargs):
141 super(Window, self).__init__(*args, **kwargs)
142 self.setMouseTracking(True)
143 self.resize(800, 600)
144 self.points = []
145 self.target = Target(self.width() / 2, self.height() / 2)
146 self.initPoints()
147
148 def update(self, *args):
149 super(Window, self).update()

Callers

nothing calls this directly

Calls 6

resizeMethod · 0.95
initPointsMethod · 0.95
TargetClass · 0.85
__init__Method · 0.45
widthMethod · 0.45
heightMethod · 0.45

Tested by

no test coverage detected