From 70edaf73839a27ab0c69f7500455837211a3f35b Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Sun, 10 May 2026 18:07:17 -0700 Subject: [PATCH] snuba/cli: fix 'occured' -> 'occurred' typo in querylog_to_csv help text --- snuba/cli/querylog_to_csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snuba/cli/querylog_to_csv.py b/snuba/cli/querylog_to_csv.py index 497bde52738..d70faac8b0c 100644 --- a/snuba/cli/querylog_to_csv.py +++ b/snuba/cli/querylog_to_csv.py @@ -113,7 +113,7 @@ def get_credentials() -> Tuple[str, str]: ) @click.option( "--event-type", - help="Type of event that occured while executing query.", + help="Type of event that occurred while executing query.", type=click.Choice(["QueryFinish", "ExceptionBeforeStart", "ExceptionWhileProcessing"]), required=True, default="QueryFinish",