-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Equal validator #200
Add Equal validator #200
Conversation
Merged 🍰 |
@tusharmakkar08 I can, but what do you want me to put there? |
@tuukkamustonen : Yes, but you need to remake the documentation after pulling from master. Also create the PR for the same. |
@tusharmakkar08 Sorry, I'm not familiar with gh-pages. Should I make a dummy commit and PR? Or merge master to gh-pages and PR? Or rebase on master (that would require force push I guess)? |
@tuukkamustonen It might be an idea to create a Wiki page describing how to update the documentation, then we can point contributors to it. |
@tuukkamustonen : Just merge the master into gh-pages and then follow this: https://github.com/alecthomas/voluptuous/tree/gh-pages#contribution-to-documentation. Let me know if you still face any issue. |
Adds a validator for matching equal values, e.g.
Equal([])
. Saves you from typingAll(list, Length(max=0))
. Or maybe doEqual({})
when you haveextra=True
.