From ff6ce9ddc29af8f5878f962828407a5f1b25bd67 Mon Sep 17 00:00:00 2001 From: Naoto Mizuno Date: Wed, 8 Nov 2023 15:37:21 +0900 Subject: [PATCH] Remove excessive parenthesis --- optuna_dashboard/ts/components/GraphTimeline.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/optuna_dashboard/ts/components/GraphTimeline.tsx b/optuna_dashboard/ts/components/GraphTimeline.tsx index b2a29888..23c65d51 100644 --- a/optuna_dashboard/ts/components/GraphTimeline.tsx +++ b/optuna_dashboard/ts/components/GraphTimeline.tsx @@ -134,6 +134,5 @@ const plotTimeline = (trials: Trial[], mode: string) => { traces.push(makeTrace(bars, state, color)) } } - } plotly.react(plotDomId, traces, layout) }