diff --git a/example_homework/cubing.py b/example_homework/cubing.py index 1153359..ab10be7 100644 --- a/example_homework/cubing.py +++ b/example_homework/cubing.py @@ -1,4 +1,4 @@ -r""" +""" cubing.py =========== @@ -27,4 +27,5 @@ def cube(x): value : number The square of `x`. """ + return x**3 pass