Skip to content
Snippets Groups Projects
Commit a6b5e55c authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix 2.11.4

parent b6657cbd
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ class overload: ...@@ -48,7 +48,7 @@ class overload:
sign = extract_type_signature_from(fun) sign = extract_type_signature_from(fun)
if sign in self.type_signatures_to_functions: if sign in self.type_signatures_to_functions:
f = self.type_signatures_to_functions[sign] f = self.type_signatures_to_functions[sign]
raise ValueError(f'Method of this signature is already overloaded with {f}') raise ValueError('Method of this signature is already overloaded with %s' % (f, ))
self.type_signatures_to_functions[sign] = fun self.type_signatures_to_functions[sign] = fun
return self return self
......
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