diff --git a/mixed_tabs_and_spaces.py b/mixed_tabs_and_spaces.py index 1778b5c..ec6cf40 100755 --- a/mixed_tabs_and_spaces.py +++ b/mixed_tabs_and_spaces.py @@ -1,7 +1,7 @@ def square(x): sum_so_far = 0 - for counter in range(x): - sum_so_far = sum_so_far + x - return sum_so_far # noqa: E999 # pylint: disable=bad-indentation Python 3 will raise a TabError here + for _ in range(x): + sum_so_far += x + return sum_so_far # noqa: E999 # pylint: disable=mixed-indentation Python 3 will raise a TabError here print(square(10))