mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
Fix tuples to actually be tuples (#52591)
This commit is contained in:
parent
6746ec6331
commit
b5c2b407d6
4 changed files with 8 additions and 8 deletions
|
@ -499,9 +499,9 @@ def main():
|
|||
mutually_exclusive=[('failover', 'region', 'weight')],
|
||||
# failover, region and weight require identifier
|
||||
required_by=dict(
|
||||
failover=('identifier'),
|
||||
region=('identifier'),
|
||||
weight=('identifier'),
|
||||
failover=('identifier',),
|
||||
region=('identifier',),
|
||||
weight=('identifier',),
|
||||
),
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue