Fix py3.5
This commit is contained in:
parent
f735aeec65
commit
c349e3ebaf
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue