Skip to content

Commit f8b2fed

Browse files
authored
use plot() instead of plot.date()
1 parent fcc0c0b commit f8b2fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gnmic-plotter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def update_plot(metric_data):
4141
if not data:
4242
continue
4343
times, values = zip(*data)
44-
ax.plot_date(times, values, "-", color="green", label=metric)
44+
ax.plot(times, values, "-", color="green", label=metric)
4545

4646
ax.set_xlabel("Time", color="white")
4747
ax.set_ylabel("Value", color="white")

0 commit comments

Comments
 (0)