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: 2 additions & 0 deletions bellows/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,8 @@ async def load_network_info(self, *, load_devices=False) -> None:
"flow_control": (
flow_control.name.lower() if flow_control is not None else None
),
# Z2M will not load EZSP backups without this internal key
"ezspVersion": ezsp.ezsp_version,
},
},
)
Expand Down
1 change: 1 addition & 0 deletions tests/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@
),
)
def test_send_failure(app, aps, ieee, msg_type):
fut = app._pending_requests[(0xBEED, 254)] = asyncio.Future()

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.10.8

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop

Check warning on line 548 in tests/test_application.py

View workflow job for this annotation

GitHub Actions / shared-ci / Run tests Python 3.11.0

There is no current event loop
app.ezsp_callback_handler(
"messageSentHandler", [msg_type, 0xBEED, aps, 254, t.EmberStatus.SUCCESS, b""]
)
Expand Down Expand Up @@ -1995,6 +1995,7 @@
"can_burn_userdata_custom_eui64": True,
"can_rewrite_custom_eui64": True,
"chip_info": None,
"ezspVersion": 8,
}
},
),
Expand Down
Loading