fcf0ed4
From e8e38492ccb8cbbd386f4499953b6d61a20b9e0f Mon Sep 17 00:00:00 2001
fcf0ed4
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
fcf0ed4
Date: Tue, 19 Sep 2023 08:28:14 -0400
fcf0ed4
Subject: [PATCH] Remove useless shebang lines from package modules
fcf0ed4
fcf0ed4
These files do not have the executable bit set in their filesystem
fcf0ed4
permissions, so a shebang line is not useful. Furthermore, they are not
fcf0ed4
script-like (no interesting side effects when executed directly) anyway.
fcf0ed4
---
fcf0ed4
 helpdev/__init__.py | 1 -
fcf0ed4
 helpdev/__main__.py | 1 -
fcf0ed4
 2 files changed, 2 deletions(-)
fcf0ed4
fcf0ed4
diff --git a/helpdev/__init__.py b/helpdev/__init__.py
fcf0ed4
index da79598..e4a9474 100644
fcf0ed4
--- a/helpdev/__init__.py
fcf0ed4
+++ b/helpdev/__init__.py
fcf0ed4
@@ -1,4 +1,3 @@
fcf0ed4
-#!/usr/bin/env python
fcf0ed4
 # -*- coding: utf-8 -*-
fcf0ed4
 
fcf0ed4
 """HelpDev - Extracts information about the Python environment easily.
fcf0ed4
diff --git a/helpdev/__main__.py b/helpdev/__main__.py
fcf0ed4
index c29398b..ed260aa 100644
fcf0ed4
--- a/helpdev/__main__.py
fcf0ed4
+++ b/helpdev/__main__.py
fcf0ed4
@@ -1,4 +1,3 @@
fcf0ed4
-#!/usr/bin/env python
fcf0ed4
 # -*- coding: utf-8 -*-
fcf0ed4
 
fcf0ed4
 """HelpDev - Extracts information about the Python environment easily.
fcf0ed4
-- 
fcf0ed4
GitLab
fcf0ed4