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 is a reserved python keyword which means that I cannot use it as a function.
SQLAlchemy uses in_(). peewee uses the << operator.
IN() is also an option.
Currently it's in_values().
in is a reserved python keyword which means that I cannot use it as a function.
SQLAlchemy uses in_(). peewee uses the << operator.
IN() is also an option.
Currently it's in_values().
Let me know what you guys prefer.