This function is the one which needs to be updated.
|
def sum(a: int, b: int) -> int: |
|
''' |
|
This function returns the sum of two numbers |
|
|
|
Args: |
|
a: float the first number |
|
b: float the second number |
|
|
|
Returns: |
|
float the sum of a and b |
|
''' |
|
return a + b |
->(url)
This function is the one which needs to be updated.
contributor-onboarding/src/utils.py
Lines 7 to 18 in 6169c8d