0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-02 18:59:04 +02:00

Fix missing import in federation_event handler. (#13431)

#13404 removed an import of `Optional` which was still needed
due to #13413 added more usages.
This commit is contained in:
Patrick Cloke 2022-08-01 10:14:29 -04:00 committed by GitHub
parent 224d792dd7
commit f8e7a9418a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
changelog.d/13431.misc Normal file
View file

@ -0,0 +1 @@
Refactor `_resolve_state_at_missing_prevs` to compute an `EventContext` instead.

View file

@ -23,6 +23,7 @@ from typing import (
Dict,
Iterable,
List,
Optional,
Sequence,
Set,
Tuple,