diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-12-03 14:20:04 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-12-03 14:20:04 -0500 |
commit | 8c67614da984778fa10249d9bbf91719a750f1f4 (patch) | |
tree | 5530fc93e5b1fd863eb8ed5981fa81c67b67fe60 /qolab/data/trace.py | |
parent | 2cd2d1ba131cf885e0534cec7f0504836f5b3d4b (diff) | |
download | qolab-8c67614da984778fa10249d9bbf91719a750f1f4.tar.gz qolab-8c67614da984778fa10249d9bbf91719a750f1f4.zip |
added attributes for trace
Diffstat (limited to 'qolab/data/trace.py')
-rw-r--r-- | qolab/data/trace.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qolab/data/trace.py b/qolab/data/trace.py index 871c8c2..4a2e623 100644 --- a/qolab/data/trace.py +++ b/qolab/data/trace.py @@ -4,6 +4,7 @@ class Trace: self.values = None self.label = None self.unit = None + self.attributes = {} def plot(self): import matplotlib.pyplot as plt |