mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Make all doc fragments, module utils, and plugin utils private (#11896)
* Make all doc fragments private. * Make all plugin utils private. * Make all module utils private. * Reformat. * Changelog fragment. * Update configs and ignores. * Adjust unit test names.
This commit is contained in:
@@ -13,9 +13,9 @@ version_added: 5.6.0
|
||||
description:
|
||||
- Retrieve details about Python applications installed in isolated virtualenvs using pipx.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
- community.general.attributes.info_module
|
||||
- community.general.pipx
|
||||
- community.general._attributes
|
||||
- community.general._attributes.info_module
|
||||
- community.general._pipx
|
||||
options:
|
||||
name:
|
||||
description:
|
||||
@@ -130,13 +130,13 @@ version:
|
||||
version_added: 10.1.0
|
||||
"""
|
||||
|
||||
from ansible_collections.community.general.plugins.module_utils.module_helper import ModuleHelper
|
||||
from ansible_collections.community.general.plugins.module_utils.pipx import (
|
||||
from ansible_collections.community.general.plugins.module_utils._module_helper import ModuleHelper
|
||||
from ansible_collections.community.general.plugins.module_utils._pipx import (
|
||||
make_process_dict,
|
||||
pipx_common_argspec,
|
||||
pipx_runner,
|
||||
)
|
||||
from ansible_collections.community.general.plugins.module_utils.version import LooseVersion
|
||||
from ansible_collections.community.general.plugins.module_utils._version import LooseVersion
|
||||
|
||||
|
||||
class PipXInfo(ModuleHelper):
|
||||
|
||||
Reference in New Issue
Block a user