mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Fix tuples to actually be tuples (#52591)
This commit is contained in:
@@ -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',),
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user