Avoid six in plugin code (#10873)

Avoid six in plugin code.
This commit is contained in:
Felix Fontein
2025-10-05 06:56:32 +02:00
committed by GitHub
parent 9d0150b2c3
commit 6cd4665412
34 changed files with 70 additions and 120 deletions

View File

@@ -59,8 +59,8 @@ notes:
- This plugin ignores the C(become_user) supplied and uses C(pmrun)'s own configuration to select the user.
"""
from shlex import quote as shlex_quote
from ansible.plugins.become import BecomeBase
from ansible.module_utils.six.moves import shlex_quote
class BecomeModule(BecomeBase):