From 5642d22f1debeffa7db6668ac00ea0694ecbef83 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Thu, 29 Feb 2024 08:36:40 -0500 Subject: [PATCH] Remove shebang line from pykeepass/deprecated.py The file does not have the executable bit set in its filesystem permissions and is not script-like (no `if __name__ == "__main__"` and no interesting side effects), so a shebang is not useful. --- pykeepass/deprecated.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pykeepass/deprecated.py b/pykeepass/deprecated.py index 230cfbed..ece59831 100644 --- a/pykeepass/deprecated.py +++ b/pykeepass/deprecated.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python3 - - # ---------- Find functions --------------- # Use find_entries()/find_groups() instead