Move StateFilter to synapse.types (#14668)

* Move `StateFilter` to `synapse.types`

* Changelog
This commit is contained in:
David Robertson 2022-12-12 16:19:30 +00:00 committed by GitHub
parent 74b89c2761
commit b5b5f66084
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 25 additions and 24 deletions

View file

@ -31,12 +31,12 @@ from synapse.api.constants import EventTypes
from synapse.events import EventBase
from synapse.logging.opentracing import tag_args, trace
from synapse.storage.roommember import ProfileInfo
from synapse.storage.state import StateFilter
from synapse.storage.util.partial_state_events_tracker import (
PartialCurrentStateTracker,
PartialStateEventsTracker,
)
from synapse.types import MutableStateMap, StateMap
from synapse.types.state import StateFilter
from synapse.util.cancellation import cancellable
if TYPE_CHECKING: