We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b81673 commit e786f83Copy full SHA for e786f83
1 file changed
area_of_rectangle.py
@@ -31,7 +31,6 @@ def area_of_rectangle(height, width = None):
31
"""
32
if width:
33
width = height
34
- import pdb; pdb.set_trace()
35
area = height * width
36
return area
37
0 commit comments