Fix py3.5

This commit is contained in:
Erik Johnston 2019-10-10 12:29:38 +01:00
parent f735aeec65
commit c349e3ebaf

View file

@ -44,7 +44,7 @@ def do_patch():
@functools.wraps(f) @functools.wraps(f)
def wrapped(*args, **kwargs): def wrapped(*args, **kwargs):
start_context = LoggingContext.current_context() start_context = LoggingContext.current_context()
changes: List[str] = [] changes = [] # type: List[str]
orig = orig_inline_callbacks(_check_yield_points(f, changes)) orig = orig_inline_callbacks(_check_yield_points(f, changes))
try: try: