Skip to content

Instantly share code, notes, and snippets.

@manashmandal
Created September 4, 2016 18:49
Show Gist options
  • Save manashmandal/8409ef8e312b8c6504192e68e7ee053e to your computer and use it in GitHub Desktop.
Save manashmandal/8409ef8e312b8c6504192e68e7ee053e to your computer and use it in GitHub Desktop.
from SliderDialog.Slider import Slider_Dialog
from ProgressDialog.Progress import ProgressBar_Dialog
import sys
from PyQt5.QtWidgets import QApplication
if __name__ == '__main__':
app = QApplication(sys.argv)
sd = Slider_Dialog()
pb = ProgressBar_Dialog()
sys.exit(app.exec_())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment