Typo in return statement

This commit is contained in:
aewens 2019-05-14 19:31:13 +02:00
parent 80d47ecae8
commit dff547bd97
1 changed files with 1 additions and 1 deletions

View File

@ -32,4 +32,4 @@ def coroutine(func):
coro = func(*args, **kwargs)
coro.send(None)
return coro
return wrapper_decorator
return wrapper_coroutine