(self, *args, **kwargs)
| 167 | class TestWindow(QWidget): |
| 168 | |
| 169 | def __init__(self, *args, **kwargs): |
| 170 | super().__init__(*args, **kwargs) |
| 171 | layout = QHBoxLayout(self) |
| 172 | layout.addWidget(RubberBandButton("d", self, bgcolor="#01847E")) |
| 173 | layout.addWidget(RubberBandButton("v", self, bgcolor="#7FA91F")) |
| 174 | layout.addWidget(RubberBandButton("N", self, bgcolor="#FC8416")) |
| 175 | layout.addWidget(RubberBandButton("U", self, bgcolor="#66D3c0")) |
| 176 | layout.addWidget(RubberBandButton("a", self, bgcolor="#F28195")) |
| 177 | |
| 178 | |
| 179 | if __name__ == "__main__": |
no test coverage detected