diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-06-14 22:50:03 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-06-14 22:50:03 -0400 |
commit | 1f78e7d5fdc4d48f82298a9bd5184c66e9cb1ddd (patch) | |
tree | dfe6d56b42bde63f034a597b00558ce7d59578bd /eitControl.py | |
parent | bb2aa0a0be9541b3ffc2b348089d10a4ee2f26f3 (diff) | |
download | qolab-1f78e7d5fdc4d48f82298a9bd5184c66e9cb1ddd.tar.gz qolab-1f78e7d5fdc4d48f82298a9bd5184c66e9cb1ddd.zip |
remove unused color property
Diffstat (limited to 'eitControl.py')
-rw-r--r-- | eitControl.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/eitControl.py b/eitControl.py index 36c272d..22c4534 100644 --- a/eitControl.py +++ b/eitControl.py @@ -34,7 +34,6 @@ class Experiment: self.xlabel='' self.channelGraph={} self.clearData() - self.color = 1 self.guiSetup(root) self.guiSweeper = Sweeper(self.root, Npoints=10, SweepTime=1, onTicCallbacks=[self.updatePlot]) self.guiSweeper.cmdStart() @@ -198,7 +197,6 @@ class Experiment: self.dataPlot.autoRange() def updatePlot(self,swp=None): - self.color += 1 start = datetime.now() x = self.data['x'] for name in self.channelsNames2plot: |