F1002 — unmatched-opening-parenthesis

Error Code: F1002

Message: Unmatched opening 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