From c81b27a3a3211dea7fad04ab149db1202300f3fe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 4 Oct 2022 16:16:07 +0200 Subject: [PATCH] Remove shebangs from Python modules MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Shebangs only belong to standalone executables. Fixes: #12956 Signed-off-by: Petr Písař Signed-off-by: Michael Tremer --- src/python/location/__init__.py | 1 - src/python/location/database.py | 2 -- src/python/location/downloader.py | 1 - src/python/location/export.py | 1 - src/python/location/i18n.py | 1 - src/python/location/importer.py | 1 - src/python/location/logger.py | 1 - 7 files changed, 8 deletions(-) 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 # -- 2.47.2