Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork765
Report duplicate keys in check_json#558
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation
asottile commentedFeb 16, 2021
there's a few things CI is pointing out that you'll want to fix: from the tox output: this indicates that the code on line 16 is not covered by an automated test -- there's a set of tests for this module in tests/check_json_test.py -- you can probably find some examples there to fix it from the pre-commit output: this indicates that the |
AdityaKhursale commentedFeb 16, 2021
Thank you for the help! |
AdityaKhursale commentedFeb 17, 2021
I have fixed the things reported by CI. Thanks, |
asottile left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Raise ValueError and return 1 if json contains duplicate keys

Raise ValueError and return 1 if json contains duplicate keys
Fixes#554