Skip to content

Commit

Permalink
Add test for QTableWidget (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrieger1 committed Dec 16, 2022
1 parent 7001800 commit e3fdeef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/qtablewidget.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from typing import Optional
from PyQt5.QtWidgets import QTableWidget, QWidget

table = QTableWidget()
cell: Optional[QWidget] = table.cellWidget(0, 0)

0 comments on commit e3fdeef

Please sign in to comment.