Created
September 4, 2016 18:49
-
-
Save manashmandal/8409ef8e312b8c6504192e68e7ee053e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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