Skip to content

Commit

Permalink
isort fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
maximvelichko committed Oct 30, 2023
1 parent 7d7034d commit a74409f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def test_refresh_data(vera_controller_data: VeraControllerData) -> None:
assert len(data) == 20

services = controller.map_services()
assert services == None
assert services is None


def test_polling(vera_controller_data: VeraControllerData) -> None:
Expand Down Expand Up @@ -288,8 +288,8 @@ def test_thermostat(vera_controller_data: VeraControllerData) -> None:
assert device.get_fan_mode(refresh=True) == "Off"
assert device.get_hvac_state(refresh=True) == "Off"

assert device1._has_double_setpoints() == False
assert device2._has_double_setpoints() == True
assert device1._has_double_setpoints() is False
assert device2._has_double_setpoints() is True

update_device(
controller_data=vera_controller_data,
Expand Down

0 comments on commit a74409f

Please sign in to comment.