We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d6241c commit e4e2587Copy full SHA for e4e2587
qtpy/tests/test_compat.py
@@ -33,5 +33,5 @@ def test_getimagebytes(qtbot):
33
painter = QPainter(image)
34
painter.setBrush(QBrush(Qt.black))
35
painter.fillRect(QRectF(0, 0, 100, 100), Qt.black)
36
- bytes = compat.getimagebytes(image)
37
- assert len(bytes) == 100 * 100 * 4
+ _bytes = compat.getimagebytes(image)
+ assert len(_bytes) == 100 * 100 * 4
0 commit comments