diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-05-03 13:59:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 13:59:28 +0100 |
commit | 77dee1b451aa5c5c3644e5e4e5afefda2a44aa15 (patch) | |
tree | e6d651dff038f32c8f980694f81fe9c9273084d1 /synapse/events | |
parent | minor wording fix in docstring (diff) | |
download | synapse-77dee1b451aa5c5c3644e5e4e5afefda2a44aa15.tar.xz |
fix imports
broken in 5938928 :-S
Diffstat (limited to 'synapse/events')
-rw-r--r-- | synapse/events/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
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, |