We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39480cc commit a6ce625Copy full SHA for a6ce625
mixed_tabs_and_spaces.py
@@ -2,6 +2,6 @@ def square(x):
2
sum_so_far = 0
3
for counter in range(x):
4
sum_so_far = sum_so_far + x
5
- return sum_so_far
+ return sum_so_far # noqa Python 3 will raise a TabError here
6
7
print(square(10))
0 commit comments