mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Fix subscriptable dict type
Fix: ``` tests/test_state.py:267: error: "dict" is not subscriptable, use "typing.Dict" instead [misc] ``` In Python 3.9, `typing` is deprecated and the types are subscriptable (generics) by default, https://peps.python.org/pep-0585/#implementation
This commit is contained in:
parent
ba572647b2
commit
55b08534a4
@ -264,7 +264,7 @@ class StateTestCase(unittest.TestCase):
|
||||
|
||||
self.dummy_store.register_events(graph.walk())
|
||||
|
||||
context_store: dict[str, EventContext] = {}
|
||||
context_store: Dict[str, EventContext] = {}
|
||||
|
||||
for event in graph.walk():
|
||||
context = yield defer.ensureDeferred(
|
||||
|
Loading…
Reference in New Issue
Block a user