summary refs log tree commit diff
path: root/synmark/__init__.py
diff options
context:
space:
mode:
authorQuentin Gliech <quenting@element.io>2024-08-30 10:07:46 +0200
committerGitHub <noreply@github.com>2024-08-30 10:07:46 +0200
commitcdd5979129211a6906ca12c4f6f6ac7a108c2fb7 (patch)
treeca4989fa07d112a120d1c1a20c97674a070a8901 /synmark/__init__.py
parentSliding sync: Ignore tables with no create event in current state (#17633) (diff)
downloadsynapse-cdd5979129211a6906ca12c4f6f6ac7a108c2fb7.tar.xz
Replace isort and black with ruff (#17620)
Ruff now has decent parity with black and isort, so this is going to just save us a bunch of time
Diffstat (limited to 'synmark/__init__.py')
-rw-r--r--synmark/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synmark/__init__.py b/synmark/__init__.py

index 8c47e50c7c..887fec2f96 100644 --- a/synmark/__init__.py +++ b/synmark/__init__.py
@@ -27,7 +27,9 @@ from synapse.types import ISynapseReactor try: from twisted.internet.epollreactor import EPollReactor as Reactor except ImportError: - from twisted.internet.pollreactor import PollReactor as Reactor # type: ignore[assignment] + from twisted.internet.pollreactor import ( # type: ignore[assignment] + PollReactor as Reactor, + ) from twisted.internet.main import installReactor