-
Notifications
You must be signed in to change notification settings - Fork 2
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
Con duct ls #224
base: main
Are you sure you want to change the base?
Con duct ls #224
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #224 +/- ##
==========================================
- Coverage 95.36% 92.43% -2.94%
==========================================
Files 4 5 +1
Lines 626 661 +35
Branches 70 76 +6
==========================================
+ Hits 597 611 +14
- Misses 15 36 +21
Partials 14 14 ☔ View full report in Codecov by Sentry. |
=== Do not change lines below === { "chain": [], "cmd": "./.update-readme-help.py", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
print( | ||
f"Unexpected format encountered: {args.format}. This should have been caught by argparse.", | ||
file=sys.stderr, | ||
) | ||
return 1 |
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.
smells like a logical place to raise RuntimeError
if it is something unexpected. hence
print( | |
f"Unexpected format encountered: {args.format}. This should have been caught by argparse.", | |
file=sys.stderr, | |
) | |
return 1 | |
raise RuntimeError( | |
f"Unexpected format encountered: {args.format}. This should have been caught by argparse.", | |
) |
Fixes #185
summaries
yaml
json
jsonpp
TODO