From 7f8b2d227652c5afe026bff7e8025d87082a9df2 Mon Sep 17 00:00:00 2001 From: Daniel Albers Date: Tue, 1 Apr 2025 00:08:04 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Felix Fontein --- plugins/modules/pacman_key.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/pacman_key.py b/plugins/modules/pacman_key.py index d16bc0c556..d5300bcd3a 100644 --- a/plugins/modules/pacman_key.py +++ b/plugins/modules/pacman_key.py @@ -129,10 +129,10 @@ from ansible.module_utils.urls import fetch_url from ansible.module_utils.common.text.converters import to_native -class GpgListResult: +class GpgListResult(object): """Wraps gpg --list-* output.""" - def __init__(self, line) -> None: + def __init__(self, line): self._parts = line.split(':') @property