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
Calling decorated with dispatch functions with key value arguments will always throw "could not find signature for .." because call only checks *args types and not **kwargs , please fix in dispatcher.py line 267 (https://github.com/mrocklin/multipledispatch/blob/master/multipledispatch/dispatcher.py)
The text was updated successfully, but these errors were encountered:
agreed! I encountered the same error and led me also to Line267. I hope it gets fixed asap
Sorry, something went wrong.
fix mrocklin#126
81d8384
@ZMarouani @wboughattas I modified the code in L267 and 432 by doing this:
types_args = tuple([type(arg) for arg in args]) types = ( types_args + tuple(list(type(kwarg) for kwarg in kwargs.values())) ) func = self.dispatch(*types)
But I now get keyword argument errors... Did you manage to solve this issue?
No branches or pull requests
Calling decorated with dispatch functions with key value arguments will always throw "could not find signature for .." because call only checks *args types and not **kwargs , please fix in dispatcher.py line 267 (https://github.com/mrocklin/multipledispatch/blob/master/multipledispatch/dispatcher.py)
The text was updated successfully, but these errors were encountered: