Skip to content

Commit

Permalink
Remove undefined parameter for higher order function
Browse files Browse the repository at this point in the history
  • Loading branch information
ilesoft committed Dec 20, 2024
1 parent 93d6b3d commit c2bdf34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/tupa/laskentatyypit.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def operate_to_all(self, function2, other):
oper = MathListDict({})
for k in self.keys():
try:
oper[k] = [(function2(self[k], x, *args) for x in other)]
oper[k] = [(function2(self[k], x) for x in other)]
except KeyError:
pass
except TypeError:
Expand Down

0 comments on commit c2bdf34

Please sign in to comment.