Skip to content

Commit

Permalink
fix: grouper script (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterIceZ authored Feb 28, 2024
1 parent b0c17a0 commit f48fef0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/scripts/grouper_scripts/avg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

full_score = float(sys.argv[1])
score = [int(i) for i in sys.argv[2:]]
score = [float(i) for i in sys.argv[2:]]

result = 0
for i in score:
Expand Down
2 changes: 1 addition & 1 deletion example/scripts/grouper_scripts/min
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

full_score = float(sys.argv[1])
score = [int(i) for i in sys.argv[2:]]
score = [float(i) for i in sys.argv[2:]]

result = -1

Expand Down

0 comments on commit f48fef0

Please sign in to comment.