mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-07-21 12:11:07 +02:00
* wip * simplified quantity widget * fix example * more docs * add test * update docs * try to avoid overflow * reduce again
10 lines
136 B
Python
10 lines
136 B
Python
from qtpy.QtWidgets import QApplication
|
|
|
|
from superqt import QQuantity
|
|
|
|
app = QApplication([])
|
|
w = QQuantity("1m")
|
|
w.show()
|
|
|
|
app.exec()
|