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
Hi, I encounter the following use case, which requires adding a new option "ignore_extra_values":
from schema import Schema s = Schema({str: int}, ignore_extra_values=True) print(s.validate({'some_str': 2, 'a': 'some_str'}))
Expected output:
{'some_str': 2}
Is this some thing easy to do? Any help is greatly appreciated!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I encounter the following use case, which requires adding a new option "ignore_extra_values":
Expected output:
Is this some thing easy to do?
Any help is greatly appreciated!
The text was updated successfully, but these errors were encountered: