Remove callback decorator from coroutine functions (#75626)

* Remove callback decorator from coroutine functions

* Remove some more callback decorators
This commit is contained in:
Martin Hjelmare 2022-07-22 19:09:02 +02:00 committed by GitHub
parent 148f963510
commit c05905ebda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 3 additions and 17 deletions

View file

@ -22,7 +22,6 @@ _LOGGER = logging.getLogger(__name__)
@singleton(DATA_NETWORK)
@callback
async def async_get_network(hass: HomeAssistant) -> Network:
"""Get network singleton."""
network = Network(hass)