Skip to content

Commit 0602201

Browse files
committed
Disable
1 parent 28a5667 commit 0602201

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

plugwise_usb/connection/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,11 @@ async def initialize_stick(self) -> None:
190190
self._network_id = init_response.network_id
191191
self._is_initialized = True
192192

193-
# add Stick NodeInfoRequest
194-
node_info, _ = await self.get_node_details(self._mac_stick, False)
195-
if node_info is not None:
196-
self._fw_stick = node_info.firmware
197-
self._hw_stick = node_info.hardware
193+
# # add Stick NodeInfoRequest
194+
# node_info, _ = await self.get_node_details(self._mac_stick, False)
195+
# if node_info is not None:
196+
# self._fw_stick = node_info.firmware
197+
# self._hw_stick = node_info.hardware
198198

199199
if not self._network_online:
200200
raise StickError("Zigbee network connection to Circle+ is down.")

tests/test_usb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ async def test_stick_connect(self, monkeypatch: pytest.MonkeyPatch) -> None:
461461
assert stick.mac_stick == "0123456789012345"
462462
assert stick.mac_coordinator == "0098765432101234"
463463
assert stick.firmware_stick == None
464-
assert stick.hardware_stick == "653907008512"
464+
assert stick.hardware_stick == None # "653907008512"
465465
assert not stick.network_discovered
466466
assert stick.network_state
467467
assert stick.network_id == 17185

0 commit comments

Comments
 (0)