import sys from PyQt5.QtWidgets import QApplication from laser_methane_pt import LaserMethanePT if __name__ == "__main__": app = QApplication(sys.argv) window = LaserMethanePT() window.show() sys.exit(app.exec_())