From 140653a3accbc660720a17cf81deb46ed9d75532 Mon Sep 17 00:00:00 2001 From: Sandro Date: Thu, 4 May 2023 19:59:57 +0200 Subject: [PATCH] Remove shebang from modules Since these are not standalone scripts, but modules, they do not require a shebang. While packaging for Fedora rpmlint threw an error pointing this out. --- odml/tools/odmlparser.py | 1 - odml/tools/xmlparser.py | 1 - 2 files changed, 2 deletions(-) diff --git a/odml/tools/odmlparser.py b/odml/tools/odmlparser.py index 3d47454d..965ea7f8 100644 --- a/odml/tools/odmlparser.py +++ b/odml/tools/odmlparser.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python """ A generic odML parsing module. It parses odML files and documents. All supported formats can be found in parser_utils.SUPPORTED_PARSERS. diff --git a/odml/tools/xmlparser.py b/odml/tools/xmlparser.py index 5c9791b0..0f3b293d 100644 --- a/odml/tools/xmlparser.py +++ b/odml/tools/xmlparser.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python """ The xmlparser module provides access to the XMLWriter and XMLReader classes. Both handle the conversion of odML documents from and to XML files and strings.