From 7f312b11627abf53e007913aad39b3fb46984c79 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Wed, 22 Dec 2021 18:26:01 -0500 Subject: [PATCH] Remove useless shebangs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since these test modules don’t have script-like content (no “if __name__ == "__main__"” or similar), and since their file permissions do not include the executable bit, shebang lines (#!) aren’t useful. --- matplotlib_scalebar/test_dimension.py | 1 - matplotlib_scalebar/test_scalebar.py | 1 - 2 files changed, 2 deletions(-) diff --git a/matplotlib_scalebar/test_dimension.py b/matplotlib_scalebar/test_dimension.py index b4f5951..02a51e9 100644 --- a/matplotlib_scalebar/test_dimension.py +++ b/matplotlib_scalebar/test_dimension.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python """ """ # Standard library modules. diff --git a/matplotlib_scalebar/test_scalebar.py b/matplotlib_scalebar/test_scalebar.py index 2be60b8..1c38a2e 100644 --- a/matplotlib_scalebar/test_scalebar.py +++ b/matplotlib_scalebar/test_scalebar.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python """ """ # Standard library modules.