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
https://github.com/splintered-reality/py_trees/blob/0d5b39f2f6333c504406d8a63052c456c6bd1ce5/py_trees/timers.py#L59C9-L59C9
if not isinstance(duration, float): raise TypeError( "Timer: duration should be int or float, but you passed in {}".format( type(duration) ) )
The error message is misleading, since int isn't actually supported, only float
int
float
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/splintered-reality/py_trees/blob/0d5b39f2f6333c504406d8a63052c456c6bd1ce5/py_trees/timers.py#L59C9-L59C9
The error message is misleading, since
int
isn't actually supported, onlyfloat
The text was updated successfully, but these errors were encountered: