File tree
Expand file treeCollapse file tree1 file changed
+1
-2
lines changed exercises/044-static_methods
Expand file treeCollapse file tree1 file changed
+1
-2
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -6,7 +6,6 @@ class MathOperations:
|
6 | 6 | def add_numbers(num1, num2):
|
7 | 7 | return num1 + num2
|
8 | 8 |
|
9 |
| -math_operations_instance = MathOperations() |
10 | 9 | sum_of_numbers = MathOperations.add_numbers(10, 15)
|
11 | 10 |
|
12 |
| -print(f"Sum of Numbers: {sum_of_numbers}") |
| 11 | +print(f"Sum of Numbers: {sum_of_numbers}") |
You can’t perform that action at this time.
0 commit comments