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
On src/archive_chan/params.py, declaring all of those CLI args with argparse is too verbose.
src/archive_chan/params.py
An example usage of Tap:
from tap import Tap class Args(Tap): name: str # help message here args = SimpleArgumentParser(underscores_to_dashes=True).parse_args()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
On
src/archive_chan/params.py
, declaring all of those CLI args with argparse is too verbose.An example usage of Tap:
The text was updated successfully, but these errors were encountered: