We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce4ea7 commit 717daf2Copy full SHA for 717daf2
example.py
@@ -17,23 +17,23 @@ def sum(self):
17
"""
18
Compute :math:`x + y`.
19
20
- #return self.x + self.y
+ return self.x + self.y
21
22
def difference(self):
23
24
Compute :math:`x - y`.
25
26
- #return self.y - self.x
+ return self.y - self.x
27
28
def product(self):
29
30
Compute :math:`x * y`.
31
32
- #return self.x * self.y
+ return self.x * self.y
33
34
def quotient(self):
35
36
Compute :math:`x / y`.
37
38
- #return self.x / self.y
+ return self.x / self.y
39
0 commit comments