aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qolab/data/trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/data/trace.py b/qolab/data/trace.py
index 7601f6b..bce0711 100644
--- a/qolab/data/trace.py
+++ b/qolab/data/trace.py
@@ -344,7 +344,7 @@ class TraceSetSameX(Trace):
if self.x.config["type"] == "timestamp":
x = from_timestamps_to_dates(x)
for k, tr in self.traces.items():
- p = axs[cnt].plot(x, tr.values, label=k)
+ axs[cnt].plot(x, tr.values, label=k)
axs[cnt].set_ylabel(f"{tr.config['label']} ({tr.config['unit']})")
axs[cnt].legend()
axs[cnt].grid(True)