mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix args schema regression in k8s module
Add back comma for required_one_of argument as it's supposed to be an iterable of iterables. PR #39787 by @Akasurde Fixes: #39786 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
5af1d84842
commit
122780abce
1 changed files with 1 additions and 1 deletions
|
@ -349,7 +349,7 @@ def main():
|
|||
mutually_exclusive=(('file_reference', 'inline_data'),
|
||||
('url_username', 'insecure'),
|
||||
('url_password', 'insecure')),
|
||||
required_one_of=(('file_reference', 'inline_data')),
|
||||
required_one_of=(('file_reference', 'inline_data'),),
|
||||
)
|
||||
|
||||
if not HAS_LIB_YAML:
|
||||
|
|
Loading…
Reference in a new issue