Skip to content

Commit c0a8151

Browse files
author
cclauss
authored
# noqa: E999 # pylint: disable=bad-indentation
1 parent a6ce625 commit c0a8151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mixed_tabs_and_spaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ def square(x):
22
sum_so_far = 0
33
for counter in range(x):
44
sum_so_far = sum_so_far + x
5-
return sum_so_far # noqa Python 3 will raise a TabError here
5+
return sum_so_far # noqa: E999 # pylint: disable=bad-indentation Python 3 will raise a TabError here
66

77
print(square(10))

0 commit comments

Comments
 (0)