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
There is a mixture of syntax used in evaluating truth statements which needs addressing. Need to double check Cython interprets all of them in the same way. Even if it does, it makes sense to use a uniform syntax. A prime example is grid_metrics.pyx, where one sees statements like if var == True: and if var: mixed. Especially important is not confusing this syntax with comparisons to None.
The text was updated successfully, but these errors were encountered:
There is a mixture of syntax used in evaluating truth statements which needs addressing. Need to double check Cython interprets all of them in the same way. Even if it does, it makes sense to use a uniform syntax. A prime example is
grid_metrics.pyx
, where one sees statements likeif var == True:
andif var:
mixed. Especially important is not confusing this syntax with comparisons toNone
.The text was updated successfully, but these errors were encountered: