File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed
Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.11.2 - Fix new and remaining pylint warnings
4+
35## 0.11.1 - Code improvements
46
57- Smile: improve use of protection for functions and parameter
Original file line number Diff line number Diff line change 11"""Plugwise module."""
22
3- __version__ = "0.11.1 "
3+ __version__ = "0.11.2 "
44
55from plugwise .smile import Smile
66from plugwise .stick import Stick
Original file line number Diff line number Diff line change 5252 NodeResponse ,
5353 StickInitResponse ,
5454)
55- from .nodes import PlugwiseNode
5655from .nodes .circle import PlugwiseCircle
5756from .nodes .circle_plus import PlugwiseCirclePlus
5857from .nodes .scan import PlugwiseScan
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ def __len__(self):
155155class CompositeType :
156156 def __init__ (self ):
157157 self .contents = []
158+ self .value = None
158159
159160 def serialize (self ):
160161 return b"" .join (a .serialize () for a in self .contents )
You can’t perform that action at this time.
0 commit comments