Fix foreach indexing (#1403)

This commit is contained in:
Nikhil Rao 2023-07-21 20:09:20 -07:00 committed by GitHub
parent d3deade107
commit c94b2e4636
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,6 @@ class IterTag(Tag):
return BaseVar(
name=INDEX_VAR,
type_=int,
is_local=True,
)
@staticmethod
@ -46,6 +45,7 @@ class IterTag(Tag):
return BaseVar(
name=INDEX_VAR,
type_=int,
is_local=True,
)
@staticmethod