-
Notifications
You must be signed in to change notification settings - Fork 175
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
strict check simplify jdata #951
Conversation
Since the simplify jdata is confirmed to be completed (if not, please remind me), we could enable the strict check.
dpgen/simplify/simplify.py
Outdated
@@ -413,6 +414,9 @@ def run_iter(param_file, machine_file): | |||
with open(machine_file, 'r') as fp: | |||
mdata = json.load(fp) | |||
|
|||
jdata_arginfo = simplify_jdata_arginfo() | |||
jdata = normalize(jdata_arginfo, jdata) | |||
|
|||
if jdata.get('pretty_print', False): |
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.
... What is pretty_print
used for?
Codecov Report
@@ Coverage Diff @@
## devel #951 +/- ##
==========================================
- Coverage 38.16% 38.15% -0.01%
==========================================
Files 99 99
Lines 17885 17888 +3
==========================================
Hits 6825 6825
- Misses 11060 11063 +3
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
no one uses it
I modified the arginfo of |
Since the simplify jdata is confirmed to be completed (if not, please remind me), we could enable the strict check.