andersoncliffb commited on
Commit
ba64d39
·
verified ·
1 Parent(s): 282d66a

Added more information to doc string

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def my_calculator(arg1:int, arg2:int, op:str)-> int: #it's import to specify the
14
  Args:
15
  arg1: the first argument
16
  arg2: the second argument
17
- op: the operation
18
  """
19
  match op:
20
  case "*" | "multiplication":
 
14
  Args:
15
  arg1: the first argument
16
  arg2: the second argument
17
+ op: the operation, e.g. multiplication, division, addition, or subtraction.
18
  """
19
  match op:
20
  case "*" | "multiplication":