Skip to content

Commit 973ba6d

Browse files
committed
Fix CI errors
Signed-off-by: nishipy <[email protected]>
1 parent f81104a commit 973ba6d

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

plugins/modules/podman_container_exec.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,12 @@
115115
- The ID of the exec session.
116116
'''
117117

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
118+
122119
import shlex
120+
from ansible.module_utils.six import string_types
121+
from ansible.module_utils._text import to_text
122+
from ansible.module_utils.basic import AnsibleModule
123+
from ansible_collections.containers.podman.plugins.module_utils.podman.common import run_podman_command
123124

124125

125126
def run_container_exec(module: AnsibleModule) -> dict:
@@ -217,10 +218,6 @@ def main():
217218
'type': 'bool',
218219
'default': False,
219220
},
220-
'privileged': {
221-
'type': 'bool',
222-
'default': False,
223-
},
224221
'tty': {
225222
'type': 'bool',
226223
'default': False,

0 commit comments

Comments
 (0)