added python3 shebang

This commit is contained in:
jens
2021-08-14 09:39:55 +02:00
parent 0843f1d87a
commit 7111bfd5e2
2 changed files with 3 additions and 1 deletions
Regular → Executable
+1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import asyncio import asyncio
import json import json
from utils import ChangedFloat from utils import ChangedFloat
Regular → Executable
+2 -1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from brewpi_win import Ui_MainWindow from brewpi_win import Ui_MainWindow
from PyQt5 import QtWidgets, QtGui from PyQt5 import QtWidgets, QtGui
import sys import sys
@@ -170,4 +171,4 @@ if __name__ == '__main__':
win.show() win.show()
sys.exit(app.exec_()) sys.exit(app.exec_())
print ("End of program.") print ("End of program.")