We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6ce625 commit c0a8151Copy full SHA for c0a8151
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 # noqa Python 3 will raise a TabError here
+ return sum_so_far # noqa: E999 # pylint: disable=bad-indentation Python 3 will raise a TabError here
6
7
print(square(10))
0 commit comments