Skip to content

Commit 3475a56

Browse files
authored
Merge pull request #91 from plugwise/fix_act_dev_pr_init
Fix new/remaining pylint warnings
2 parents f4c1f67 + cb4ef94 commit 3475a56

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
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

plugwise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Plugwise module."""
22

3-
__version__ = "0.11.1"
3+
__version__ = "0.11.2"
44

55
from plugwise.smile import Smile
66
from plugwise.stick import Stick

plugwise/stick.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
NodeResponse,
5353
StickInitResponse,
5454
)
55-
from .nodes import PlugwiseNode
5655
from .nodes.circle import PlugwiseCircle
5756
from .nodes.circle_plus import PlugwiseCirclePlus
5857
from .nodes.scan import PlugwiseScan

plugwise/util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ def __len__(self):
155155
class 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)

0 commit comments

Comments
 (0)