From 03256e2a7915e8a934cae725c31b0c82d122d8c9 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Tue, 25 Aug 2020 18:43:12 -0700 Subject: [PATCH] Split long parameter list onto lines. --- voussoirkit/imagetools.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/voussoirkit/imagetools.py b/voussoirkit/imagetools.py index 9f979c2..e315bf3 100644 --- a/voussoirkit/imagetools.py +++ b/voussoirkit/imagetools.py @@ -1,4 +1,10 @@ -def fit_into_bounds(image_width, image_height, frame_width, frame_height, only_shrink=False): +def fit_into_bounds( + image_width, + image_height, + frame_width, + frame_height, + only_shrink=False, + ): ''' Given the w+h of the image and the w+h of the frame, return new w+h that fits the image into the frame