You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a problem with the pause function (line 524) which also makes the load function (line 228) not working with the pause argument.
So somewehere the classses pause() function gets replaced by a boolean, but I can't find the problem in the code.
The text was updated successfully, but these errors were encountered:
I think calling self.load(source, pause=pause) in line 154 should be self.load(source, pause)
I don't think that would solve things, they would (with the current load method) be essentially be identical (pause=pause indicates to put the pause variable from the constructor and and assign it to the pause parameter of the load method, which also happens when you just pass it as the second argument).
There seems to be a problem with the pause function (line 524) which also makes the load function (line 228) not working with the pause argument.
So somewehere the classses pause() function gets replaced by a boolean, but I can't find the problem in the code.
The text was updated successfully, but these errors were encountered: