1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Validate types before asserting lengths (#56882)

This commit is contained in:
Matt Martz 2019-05-23 16:51:28 -05:00 committed by GitHub
parent 6bb21c3db0
commit 9c5b72147e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,13 +25,13 @@ def sequence_of_sequences(min=None, max=None):
return All( return All(
Any( Any(
None, None,
[Length(min=min, max=max)], [Any(list, tuple)],
tuple([Length(min=min, max=max)]), tuple([Any(list, tuple)]),
), ),
Any( Any(
None, None,
[Any(list, tuple)], [Length(min=min, max=max)],
tuple([Any(list, tuple)]), tuple([Length(min=min, max=max)]),
), ),
) )