Skip to content

Commit 3a4cc90

Browse files
committed
Fix bracket -> parenthesis
1 parent 43c8f37 commit 3a4cc90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MiniPy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def do_cumprod(lst):
1919
toReturn = list()
2020
for el in lst:
2121
tmp *= el
22-
toReturn.append[tmp]
22+
toReturn.append(tmp)
2323
return toReturn
2424

2525
if use_logsum:

0 commit comments

Comments
 (0)