File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 44# Copyright (c) 2023, Takuya Nishimura <@nishipy>
55# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
66from __future__ import absolute_import , division , print_function
7+ import shlex
8+ from ansible .module_utils .six import string_types
9+ from ansible .module_utils ._text import to_text
10+ from ansible .module_utils .basic import AnsibleModule
11+ from ansible_collections .containers .podman .plugins .module_utils .podman .common import run_podman_command
712__metaclass__ = type
813
914DOCUMENTATION = r'''
115120 - The ID of the exec session.
116121'''
117122
118- from ansible_collections .containers .podman .plugins .module_utils .podman .common import run_podman_command
119- from ansible .module_utils .basic import AnsibleModule
120- from ansible .module_utils ._text import to_text
121- from ansible .module_utils .six import string_types
122- import shlex
123-
124123
125124def run_container_exec (module : AnsibleModule ) -> dict :
126125 '''
You can’t perform that action at this time.
0 commit comments