F1003 — unmatched-closing-parenthesis

Error Code: F1003

Message: Unmatched closing parenthesis

Scope: all

Typical fix: Check the parentheses in the query Problematic query: .. code-block:: python

a AND b) OR c

Correct query: .. code-block:: python

(a AND b) OR c

Back to: Messages