Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SozinM committed Feb 20, 2025
1 parent d5462dc commit cd1c8e7
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/el_cl_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,14 @@ def launch(
observability_helper,
interop_params,
)
for metrics_info in [x for x in el_builder_context.el_metrics_info if x != None]:
for metrics_info in [
x for x in el_builder_context.el_metrics_info if x != None
]:
observability.register_node_metrics_job(
observability_helper, el_builder_context.client_name, "execution-builder", metrics_info
observability_helper,
el_builder_context.client_name,
"execution-builder",
metrics_info,
)
rollup_boost_image = (
mev_params.rollup_boost_image
Expand Down Expand Up @@ -374,7 +379,9 @@ def launch(
interop_params,
da_server_context,
)
for metrics_info in [x for x in cl_builder_context.cl_nodes_metrics_info if x != None]:
for metrics_info in [
x for x in cl_builder_context.cl_nodes_metrics_info if x != None
]:
observability.register_node_metrics_job(
observability_helper,
cl_builder_context.client_name,
Expand Down

0 comments on commit cd1c8e7

Please sign in to comment.