From 77dee1b451aa5c5c3644e5e4e5afefda2a44aa15 Mon Sep 17 00:00:00 2001
From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Date: Tue, 3 May 2022 13:59:28 +0100
Subject: [PATCH] fix imports

broken in 5938928 :-S
---
 synapse/events/__init__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/synapse/events/__init__.py b/synapse/events/__init__.py
index 56c6ccc22c..c238376caf 100644
--- a/synapse/events/__init__.py
+++ b/synapse/events/__init__.py
@@ -14,7 +14,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-import abcimport os
+import abc
+import os
 from typing import (
     TYPE_CHECKING,
     Any,
-- 
GitLab