W0005 — operator-capitalization

Error Code: W0005

Message: Operators should be capitalized

Scope: all

Typical fix: Capitalize the operator Problematic query: .. code-block:: python

a and b or c

Correct query: .. code-block:: python

a AND b OR c

Back to: Messages