Fix py3.5

pull/6127/head
Erik Johnston 2019-10-10 12:29:38 +01:00
parent f735aeec65
commit c349e3ebaf
1 changed files with 1 additions and 1 deletions

View File

@ -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: