We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
equals=
Sometimes you need to check for constants. This works nicely for str(...) but not for any of the other validators.
str(...)
The workaround is to use enum(...) with a single constant value, which doesn't seem particularly idiomatic.
enum(...)
The text was updated successfully, but these errors were encountered:
https://github.com/23andMe/Yamale/issues/262
d4b124d
No branches or pull requests
Sometimes you need to check for constants. This works nicely for
str(...)
but not for any of the other validators.The workaround is to use
enum(...)
with a single constant value, which doesn't seem particularly idiomatic.The text was updated successfully, but these errors were encountered: