Skip to content

Commit 325e6eb

Browse files
Rachel ChenRachel Chen
authored andcommitted
mypy
1 parent 6cb3de5 commit 325e6eb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

snuba/web/rpc/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
RPCRequestException,
3232
convert_rpc_exception_to_proto,
3333
)
34-
from snuba.web.rpc.storage_routing.load_retriever import get_cluster_loadinfo
3534
from snuba.web.rpc.storage_routing.routing_strategies.storage_routing import (
3635
RoutingContext,
3736
RoutingDecision,
@@ -192,7 +191,9 @@ def execute(self, in_msg: Tin) -> Tout:
192191
span = scope.span
193192
if span is not None:
194193
span.description = self.config_key()
195-
self.routing_context = RoutingContext(timer=self._timer, in_msg=in_msg, query_id=uuid.uuid4().hex)
194+
self.routing_context = RoutingContext(
195+
timer=self._timer, in_msg=in_msg, query_id=uuid.uuid4().hex
196+
)
196197

197198
self.__before_execute(in_msg)
198199
error: Exception | None = None

0 commit comments

Comments
 (0)