Skip to content
Snippets Groups Projects
demo.py 153 B
Newer Older
  • Learn to ignore specific revisions
  • Andreas Bolin's avatar
    Andreas Bolin committed
    from qtpy import QtCore, QtGui, QtWidgets
    from power_bar import PowerBar
    
    
    app = QtWidgets.QApplication([])
    volume = PowerBar()
    volume.show()
    app.exec_()