Skip to content

Commit

Permalink
fix: add a missing alias that was causing a warning (#6707)
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-sentry authored Dec 30, 2024
1 parent 0680d3b commit bd48342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snuba/web/rpc/v1/endpoint_trace_item_attribute_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def convert_to_snuba_request(req: TraceItemAttributeNamesRequest) -> SnubaReques
selected_columns=[
SelectedExpression(
name="attr_key",
expression=column("attr_key"),
expression=column("attr_key", alias="attr_key"),
),
],
condition=condition,
Expand Down

0 comments on commit bd48342

Please sign in to comment.