Reformat everything.

This commit is contained in:
Felix Fontein
2025-11-01 12:08:41 +01:00
parent 3f2213791a
commit 340ff8586d
1008 changed files with 61301 additions and 58309 deletions

View File

@@ -4,7 +4,7 @@
from __future__ import annotations
DOCUMENTATION = '''
DOCUMENTATION = """
name: a_module
short_description: Test whether a given string refers to an existing module or action plugin
version_added: 4.0.0
@@ -17,9 +17,9 @@ options:
description: A string denoting a fully qualified collection name (FQCN) of a module or action plugin.
type: string
required: true
'''
"""
EXAMPLES = '''
EXAMPLES = """
- name: Make sure that community.aws.route53 is available
ansible.builtin.assert:
that:
@@ -30,13 +30,13 @@ EXAMPLES = '''
ansible.builtin.assert:
that:
- "'community.general.does_not_exist' is not community.general.a_module"
'''
"""
RETURN = '''
RETURN = """
_value:
description: Whether the module or action plugin denoted by the input exists.
type: boolean
'''
"""
from ansible.plugins.loader import action_loader, module_loader
@@ -63,9 +63,9 @@ def a_module(term):
class TestModule:
''' Ansible jinja2 tests '''
"""Ansible jinja2 tests"""
def tests(self):
return {
'a_module': a_module,
"a_module": a_module,
}