From 7df7155978e6d0e337d3298da477a57ec00623c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Tue, 12 Jul 2022 12:05:19 +0200 Subject: [PATCH] chore(gpg_secretstore): set correct shebang and python encoding --- plugins/module_utils/gpg_utils.py | 4 ++-- plugins/modules/gpg_secretstore.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/module_utils/gpg_utils.py b/plugins/module_utils/gpg_utils.py index 4b6c15c..613d539 100644 --- a/plugins/module_utils/gpg_utils.py +++ b/plugins/module_utils/gpg_utils.py @@ -1,5 +1,5 @@ -#!/usr/bin/python3 -# coding: utf-8 +#!/usr/bin/env python +# -*- coding: utf-8 -*- # (c) 2021-2022, Famedly GmbH # GNU Affero General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/agpl-3.0.txt) diff --git a/plugins/modules/gpg_secretstore.py b/plugins/modules/gpg_secretstore.py index cadd653..6b5ffee 100644 --- a/plugins/modules/gpg_secretstore.py +++ b/plugins/modules/gpg_secretstore.py @@ -1,5 +1,5 @@ -#!/usr/bin/python3 -# coding: utf-8 +#!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2021-2022, Famedly GmbH # GNU Affero General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/agpl-3.0.txt)