diff --git a/ffmpeg/_run.py b/ffmpeg/_run.py index 700a494..38dab26 100644 --- a/ffmpeg/_run.py +++ b/ffmpeg/_run.py @@ -329,8 +329,14 @@ def run( @output_operator() async def run_asyncio( - stream_spec, cmd='ffmpeg', pipe_stdin=False, pipe_stdout=False, pipe_stderr=False, - quiet=False, overwrite_output=False): + stream_spec, + cmd='ffmpeg', + pipe_stdin=False, + pipe_stdout=False, + pipe_stderr=False, + quiet=False, + overwrite_output=False, +): """Asynchronously invoke ffmpeg in asyncio sync/await style and return coroutine. Have the same possibilities as `run_async` call. diff --git a/ffmpeg/tests/test_ffmpeg.py b/ffmpeg/tests/test_ffmpeg.py index 83c79d9..3aefcbc 100644 --- a/ffmpeg/tests/test_ffmpeg.py +++ b/ffmpeg/tests/test_ffmpeg.py @@ -1,7 +1,5 @@ from __future__ import unicode_literals -import asyncio - from builtins import bytes from builtins import range from builtins import str @@ -12,6 +10,7 @@ import random import re import subprocess import sys +import asyncio try: