diff options
author | Eric Eastwood <contact@ericeastwood.com> | 2023-05-15 17:44:26 -0500 |
---|---|---|
committer | Eric Eastwood <contact@ericeastwood.com> | 2023-05-15 17:44:26 -0500 |
commit | c97198ee140fabf2c7444c9beea5baa87e98fd99 (patch) | |
tree | e46b7e83c2dd38c1aa7a8db5a0bf61b03e2f4a62 /tests/test_state.py | |
parent | Fix subscriptable dict type (diff) | |
download | synapse-c97198ee140fabf2c7444c9beea5baa87e98fd99.tar.xz |
Revert "Fix subscriptable dict type"
This reverts commit 55b08534a412f462251753f67308405ca4d02ebe.
Diffstat (limited to 'tests/test_state.py')
-rw-r--r-- | tests/test_state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_state.py b/tests/test_state.py index ddf59916b1..2029d3d60a 100644 --- a/tests/test_state.py +++ b/tests/test_state.py @@ -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( |