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
In the loop in lines:
nostale_utils/utils.py
Lines 183 to 187 in e872596
If the variable timeout is None the operation timeout -= 0.05 would cause an error because timeout is None. Change line
Line 185 in e872596
if timeout is not None: timeout -= 0.05
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the loop in lines:
nostale_utils/utils.py
Lines 183 to 187 in e872596
If the variable timeout is None the operation timeout -= 0.05 would cause an error because timeout is None.
Change line
nostale_utils/utils.py
Line 185 in e872596
to:
The text was updated successfully, but these errors were encountered: