Skip to content
Snippets Groups Projects
Commit 523f7931 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix CallWithKwargs.__getinitargs__()

parent ad03e739
No related branches found
No related tags found
No related merge requests found
......@@ -678,7 +678,9 @@ class CallWithKwargs(AlgebraicLeaf):
def __getinitargs__(self):
return (self.function,
self.parameters,
tuple(sorted(self.kw_parameters.values())))
tuple(sorted(
self.kw_parameters.items(),
key=lambda item: item[0])))
mapper_method = intern("map_call_with_kwargs")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment