Split long parameter list onto lines.

This commit is contained in:
Ethan Dalool 2020-08-25 18:43:12 -07:00
parent 09437547f0
commit 03256e2a79

View file

@ -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, 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 return new w+h that fits the image into the frame