From 8b8725ebd5e2fe40544eb308efb7cf6ff1fc559a Mon Sep 17 00:00:00 2001 From: Olle Nilsson Date: Sat, 9 May 2020 10:30:36 +0200 Subject: [PATCH] Move shebang to top of file --- sickle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sickle.py b/sickle.py index a90358d..f303737 100755 --- a/sickle.py +++ b/sickle.py @@ -1,11 +1,11 @@ +#!/usr/bin/env python3 + ''' sickle.py: this script runs sickle ''' -#!/usr/bin/env python3 - from Sickle import __main__ __main__.entry_point()