Skip to content

Commit

Permalink
fix the adder
Browse files Browse the repository at this point in the history
  • Loading branch information
profjsb committed Feb 8, 2022
1 parent cef36b9 commit 2a6e26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adder/__init__.py
Expand Up @@ -4,5 +4,5 @@
from numpy import array

def run(*args):
return -1*array(args).sum()
return array(args).sum()

0 comments on commit 2a6e26a

Please sign in to comment.