From: Petr Písař Date: Tue, 4 Oct 2022 14:16:07 +0000 (+0200) Subject: Remove shebangs from Python modules X-Git-Tag: 0.9.16~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c81b27a3a3211dea7fad04ab149db1202300f3fe;p=people%2Fms%2Flibloc.git Remove shebangs from Python modules Shebangs only belong to standalone executables. Fixes: #12956 Signed-off-by: Petr Písař Signed-off-by: Michael Tremer --- diff --git a/src/python/location/__init__.py b/src/python/location/__init__.py index 5d6710d..e0ba510 100644 --- a/src/python/location/__init__.py +++ b/src/python/location/__init__.py @@ -1,4 +1,3 @@ -#!/usr/bin/python3 ############################################################################### # # # libloc - A library to determine the location of someone on the Internet # diff --git a/src/python/location/database.py b/src/python/location/database.py index 5d79941..b97d93a 100644 --- a/src/python/location/database.py +++ b/src/python/location/database.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python - """ A lightweight wrapper around psycopg2. diff --git a/src/python/location/downloader.py b/src/python/location/downloader.py index b9e0c22..3618968 100644 --- a/src/python/location/downloader.py +++ b/src/python/location/downloader.py @@ -1,4 +1,3 @@ -#!/usr/bin/python3 ############################################################################### # # # libloc - A library to determine the location of someone on the Internet # diff --git a/src/python/location/export.py b/src/python/location/export.py index 3f58498..25a532e 100644 --- a/src/python/location/export.py +++ b/src/python/location/export.py @@ -1,4 +1,3 @@ -#!/usr/bin/python3 ############################################################################### # # # libloc - A library to determine the location of someone on the Internet # diff --git a/src/python/location/i18n.py b/src/python/location/i18n.py index 2161aa6..c97c51c 100644 --- a/src/python/location/i18n.py +++ b/src/python/location/i18n.py @@ -1,4 +1,3 @@ -#!/usr/bin/python3 ############################################################################### # # # libloc - A library to determine the location of someone on the Internet # diff --git a/src/python/location/importer.py b/src/python/location/importer.py index 96f2218..d285162 100644 --- a/src/python/location/importer.py +++ b/src/python/location/importer.py @@ -1,4 +1,3 @@ -#!/usr/bin/python3 ############################################################################### # # # libloc - A library to determine the location of someone on the Internet # diff --git a/src/python/location/logger.py b/src/python/location/logger.py index 0bdf9ec..62ad8fb 100644 --- a/src/python/location/logger.py +++ b/src/python/location/logger.py @@ -1,4 +1,3 @@ -#!/usr/bin/python3 ############################################################################### # # # libloc - A library to determine the location of someone on the Internet #