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
line 1346
for key, val in env:
I don't think this works, because you cannot iterate dict like this, you have to write like this :
for key, val in env.items() rights?