Remove missed async keywords from the revert

This should've been in 7d21b40401.
This completes the revert of async sessions.
This commit is contained in:
Lonami Exo
2022-08-30 12:39:17 +02:00
parent e87e6738b5
commit 48d7dbe90b
5 changed files with 7 additions and 24 deletions

View File

@@ -77,7 +77,7 @@ class MemorySession(Session):
def set_update_state(self, entity_id, state):
self._update_states[entity_id] = state
async def get_update_states(self):
def get_update_states(self):
return self._update_states.items()
def close(self):