Changeset - 0dd05e9d4ae7
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 20 months ago 2023-05-24 06:43:07
drewp@bigasterisk.com
ran into this line- maybe it is not NotImplemented after all?
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light9/effect/settings.py
Show inline comments
 
@@ -93,13 +93,13 @@ class _Settings:
 
                if row[0] is None:
 
                    raise TypeError('bad row %r' % (row,))
 
                dev, devAttr, value = row
 
                devDict = self._compiled.setdefault(dev, {})
 
                if devAttr in devDict:
 
                    existingVal: VTUnion = devDict[devAttr]
 
                    raise NotImplementedError('fixme: dev is to be a deviceclass (but it is currently unused)')
 
                    # raise NotImplementedError('fixme: dev is to be a deviceclass (but it is currently unused)')
 
                    value = resolve(dev, devAttr, [existingVal, value])
 
                devDict[devAttr] = value
 
        self._delZeros()
 
        return self
 

	
 
    @classmethod
0 comments (0 inline, 0 general)