deepsourcestatus / test-repository

Logical operators used when combining SQL column expressions PY-W0800
Bug risk
Major
7 months ago7 months old
Logical operators used when combining SQL column expressions
 99
100def get_active_users():
101    global user
102    sqlalchemy.select([user.id, user.name]).where(103        (user.org == "DeepSource") and (user.active == True)
104    )
105