Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license = {text = "GPL-3.0"}
requires-python = ">=3.8"
dependencies = [
"voluptuous",
"zigpy>=0.60.2",
"zigpy>=0.66.0",
"pyusb>=1.1.0",
"gpiozero",
'async-timeout; python_version<"3.11"',
Expand Down
10 changes: 4 additions & 6 deletions tests/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@
import zigpy_zigate.types as t
import zigpy_zigate.zigbee.application

APP_CONFIG = zigpy_zigate.zigbee.application.ControllerApplication.SCHEMA(
{
config.CONF_DEVICE: {config.CONF_DEVICE_PATH: "/dev/null"},
config.CONF_DATABASE: None,
}
)
APP_CONFIG = {
config.CONF_DEVICE: {config.CONF_DEVICE_PATH: "/dev/null"},
config.CONF_DATABASE: None,
}
FAKE_FIRMWARE_VERSION = "3.1z"


Expand Down
Loading