From 1927b3895f63939a06e90edfbd8f7c3da620ff2e Mon Sep 17 00:00:00 2001 From: Peter Teuben Date: Thu, 24 Aug 2023 07:22:24 -0400 Subject: [PATCH] made executable and added #! --- pyqt.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 pyqt.py diff --git a/pyqt.py b/pyqt.py old mode 100644 new mode 100755 index c684716..eb0dccd --- a/pyqt.py +++ b/pyqt.py @@ -1,3 +1,5 @@ +#! /usr/bin/env python +# import sys import os from PyQt5 import QtCore, QtWidgets @@ -343,4 +345,4 @@ def parsefile(file): print('opening window') sys.exit(app.exec()) except SystemExit: - print('closing window') \ No newline at end of file + print('closing window')