Skip to content

Commit 2182b37

Browse files
🛠️ apply pre-commit fixes
1 parent f86f864 commit 2182b37

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/sentry/sentry_metrics/querying/data/execution.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,9 @@ def _bulk_run_query(self, requests: list[Request]) -> list[Mapping[str, Any]]:
674674
except AttributeError as e:
675675
logger = logging.getLogger(__name__)
676676
logger.error(f"Error parsing formula parameters: {e}", exc_info=True)
677-
raise MetricsQueryExecutionError("Failed to parse formula parameters. Please check the formula syntax.") from e
677+
raise MetricsQueryExecutionError(
678+
"Failed to parse formula parameters. Please check the formula syntax."
679+
) from e
678680
except SnubaError as e:
679681
sentry_sdk.capture_exception(e)
680682
metrics.incr(key="ddm.metrics_api.execution.error")

0 commit comments

Comments
 (0)