Spaces:
Sleeping
Sleeping
fix
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ def crazy_calculator(*args: float, operation: Operation)-> float: #it's import t
|
|
23 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
24 |
"""A calculator that is designed for sum and multiply numbers.
|
25 |
Args:
|
26 |
-
|
27 |
operation: the operation to be conducted where sum meaning sum up all items, mul meaning multiply all items.
|
28 |
"""
|
29 |
match operation:
|
|
|
23 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
24 |
"""A calculator that is designed for sum and multiply numbers.
|
25 |
Args:
|
26 |
+
args: a seriers of float
|
27 |
operation: the operation to be conducted where sum meaning sum up all items, mul meaning multiply all items.
|
28 |
"""
|
29 |
match operation:
|