We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9875e4 commit 561d88cCopy full SHA for 561d88c
recipes/android/src/android/runnable.py
@@ -22,7 +22,7 @@ def __init__(self, func):
22
super(Runnable, self).__init__()
23
self.func = func
24
25
- def __call__(self, args, kwargs):
+ def __call__(self, *args, **kwargs):
26
self.args = args
27
self.kwargs = kwargs
28
Runnable.__runnables__.append(self)
0 commit comments