From 15beacb682e73b076e2b00d6e8dfacd1fad687c3 Mon Sep 17 00:00:00 2001 From: Marcos Del Sol Vives Date: Tue, 29 Jan 2019 10:53:20 +0100 Subject: [PATCH] Added hashbang to executables --- decensor.py | 2 ++ ui.py | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/decensor.py b/decensor.py index 5548659..81bd9a7 100644 --- a/decensor.py +++ b/decensor.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + try: import numpy as np from PIL import Image diff --git a/ui.py b/ui.py index a665029..158401a 100644 --- a/ui.py +++ b/ui.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + """ Code illustration: 6.09 @@ -544,4 +546,4 @@ class PaintApplication(framework.Framework): if __name__ == '__main__': root = tk.Tk() app = PaintApplication(root) - root.mainloop() \ No newline at end of file + root.mainloop()