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
If you set --kill-after argument on watchmedo then it will fail as the argparse configuration is not set to a float.
It needs to be:
argument('--kill-after', dest='kill_after', default=10.0, type=float, help='When stopping, kill the subprocess after the specified timeout ' 'in seconds (default 10.0).')])
The text was updated successfully, but these errors were encountered:
Good catch!
If anyone wants to give a hand, a potential patch should contain a test case :)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
If you set --kill-after argument on watchmedo then it will fail as the argparse configuration is not set to a float.
It needs to be:
The text was updated successfully, but these errors were encountered: