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
In one of our examples, we have an enumeration for US state abbreviations,
which includes Indiana. This results in an entry of the form:
```py
in = "IN",
```
which fails to compile because `in` is a reserved word.
The easiest fix I can imagine is to use upper case.
0 commit comments