Skip to content

Commit fcd4264

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d161662 commit fcd4264

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mypyc/irbuild/for_helpers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -850,18 +850,18 @@ def init(
850850
# Record a Value indicating the length of the sequence, if known at compile time.
851851
self.length = length
852852
self.reverse = reverse
853-
853+
854854
self.start = 0 if start is None else start
855855
assert self.start >= 0, "implement me!"
856-
856+
857857
self.stop = -1 if stop is None else stop
858858
assert self.stop == -1, "implement me!"
859-
859+
860860
self.step = 1 if step is None else step
861861
assert self.step and self.step >= 1:
862862
if reverse:
863863
self.step *= -1
864-
864+
865865
# Define target to contain the expression, along with the index that will be used
866866
# for the for-loop. If we are inside of a generator function, spill these into the
867867
# environment class.

0 commit comments

Comments
 (0)