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 Oct 19, 2021. It is now read-only.
After years of usage of coffee script I still write not x in y by mistake. Python interprets it as not (x in y) but coffee interprets it as (not x) in y which usually translates to false in y which is not what we want.
It should suggest to change it to x not in y or if it was what you wanted, !x in y or (not x) in y.
Same with not x of y.
The text was updated successfully, but these errors were encountered:
After years of usage of coffee script I still write
not x in y
by mistake. Python interprets it asnot (x in y)
but coffee interprets it as(not x) in y
which usually translates tofalse in y
which is not what we want.It should suggest to change it to
x not in y
or if it was what you wanted,!x in y
or(not x) in y
.Same with
not x of y
.The text was updated successfully, but these errors were encountered: