diff options
author | Erik Johnston <erik@matrix.org> | 2019-10-10 12:29:38 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-10-10 12:29:38 +0100 |
commit | c349e3ebafbe044022b93ca5c04d8b2fcb640c0a (patch) | |
tree | 4a5761e2d07e0ddc0720e2617f4de29844d0d001 /synapse/util | |
parent | sort (diff) | |
download | synapse-c349e3ebafbe044022b93ca5c04d8b2fcb640c0a.tar.xz |
Fix py3.5
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/patch_inline_callbacks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/patch_inline_callbacks.py b/synapse/util/patch_inline_callbacks.py index 3b78451dc0..812dc88835 100644 --- a/synapse/util/patch_inline_callbacks.py +++ b/synapse/util/patch_inline_callbacks.py @@ -44,7 +44,7 @@ def do_patch(): @functools.wraps(f) def wrapped(*args, **kwargs): start_context = LoggingContext.current_context() - changes: List[str] = [] + changes = [] # type: List[str] orig = orig_inline_callbacks(_check_yield_points(f, changes)) try: |