Fix tuples to actually be tuples (#52591)

This commit is contained in:
Matt Martz 2019-02-19 13:29:51 -06:00 committed by GitHub
commit b5c2b407d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -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',),
),
)