1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-11-22 02:54:25 +01:00

# noqa: E999 # pylint: disable=bad-indentation

This commit is contained in:
cclauss 2017-09-04 18:42:42 +02:00 committed by GitHub
parent a6ce6259fa
commit c0a8151153

View File

@ -2,6 +2,6 @@ def square(x):
sum_so_far = 0
for counter in range(x):
sum_so_far = sum_so_far + x
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
print(square(10))