Skip to content

Commit feaf87c

Browse files
committed
Ignore deprecation warning in async_util
1 parent fa6f702 commit feaf87c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cloudbot/util/async_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def wrap_future(fut, *, loop=None):
2121
else:
2222
func = asyncio.ensure_future
2323

24-
return func(fut, loop=loop)
24+
return func(fut, loop=loop) # pylint: disable=locally-disabled, deprecated-method
2525

2626

2727
@asyncio.coroutine

0 commit comments

Comments
 (0)