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
Several parts of the code were written prior to the availability of top-level exception handling and shared console output functions. These should be updated.
file=sys.stderr
sys.exit
raise AugurError
AlignmentError
AugurError
ConflictingArgumentsException
print(file=sys.stderr)
print_err
print_info
stderr
print_warn
WARNING:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Several parts of the code were written prior to the availability of top-level exception handling and shared console output functions. These should be updated.
Tasks
file=sys.stderr
+sys.exit
(example) withraise AugurError
AlignmentError
withAugurError
(unmerged example)ConflictingArgumentsException
extendAugurError
(unmerged example)print(file=sys.stderr)
withprint_err
print_info
instead since the message is informational, only the file stream isstderr
print_warn
to standardize prefixing of messages withWARNING:
Links
The text was updated successfully, but these errors were encountered: