mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 02:00:30 -07:00
Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
1a2a1a9295
commit
7f8b2d2276
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue