Annoying bugfix. SiQTY not stored properly

This commit is contained in:
Anne de Jong 2021-06-14 16:45:46 +02:00
parent 3f32176804
commit cd98424fd3

View File

@ -17,7 +17,8 @@ class DaqChannel:
channel_metadata: str = ''
def __post_init__(self):
self.qty = SIQtys.default
self._qty = SIQtys.default
self._store('qty', self._qty)
@property
def qty(self):