From a1e3b7c2ebad80149cb9b4924d9e1be4cd1af49d Mon Sep 17 00:00:00 2001 From: Theodor Chikin Date: Thu, 13 Nov 2025 22:30:41 +0300 Subject: [PATCH] uncommented chart.show() at the end --- plotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotter.py b/plotter.py index bcebbb4..c0a7c1c 100755 --- a/plotter.py +++ b/plotter.py @@ -105,6 +105,6 @@ if __name__ == "__main__": #chart.add_trace(go.Scattergl(x=data[key+"_N"], y=data[key], name=key, mode="markers+lines", text=data[key+"_hex"])) # chart.add_trace(go.Scattergl(x=data[key+"_N"], y=data[key], name=key, mode="lines+markers", text=data[key+"_hex"])) -# chart.show() + chart.show() chart.write_html(argv[1] + ".html")