You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is found in each of the three get_params function in runtime.gd. The dependent code never runs because if idx = -1 (or lower) then it cannot also be >= 0 (or higher).
I believe the line should be:
if idx < 0 or idx >= params.size():
The text was updated successfully, but these errors were encountered:
if idx < 0 and idx >= params.size():
This is found in each of the three get_params function in runtime.gd. The dependent code never runs because if idx = -1 (or lower) then it cannot also be >= 0 (or higher).
I believe the line should be:
if idx < 0 or idx >= params.size():
The text was updated successfully, but these errors were encountered: