From 5e5b88818f77c13817ba4cc0d44605d451fe9a25 Mon Sep 17 00:00:00 2001 From: hdk5 Date: Thu, 30 Apr 2020 20:20:45 +0300 Subject: [PATCH] Fix codestyle --- ffmpeg/_run.py | 10 ++++++++-- ffmpeg/tests/test_ffmpeg.py | 3 +-- 2 files changed, 9 insertions(+), 4 deletions(-) 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: