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
{{ message }}
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.
# err, can be `for foo in bar`for_idx, fooinenumerate(bar):
...
# err, can be `for value in foo.values()`for_key, valueinfoo.items():
...
# err, can be `for key in foo.keys()` or `for key in foo.keys()`forkey, _valueinfoo.items():
...
This would work better with type checking since .items() and keys() can be overloaded, but probably still work syntacticly
The text was updated successfully, but these errors were encountered:
This would work better with type checking since
.items()
andkeys()
can be overloaded, but probably still work syntacticlyThe text was updated successfully, but these errors were encountered: