From 9691c49b65ef15850502603c99cc7fef789a0da2 Mon Sep 17 00:00:00 2001 From: James Hodgson Date: Fri, 7 Oct 2022 17:32:05 +0100 Subject: [PATCH] #22 Fix typo --- src/utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/utils.py b/src/utils/utils.py index 317e1f1..a9c7445 100644 --- a/src/utils/utils.py +++ b/src/utils/utils.py @@ -15,4 +15,4 @@ def round_resolution(resolution: "tuple[int, int]", multiples: "tuple[int, int]" :param multiples: Multiples to round the resolution values to :returns: Tuple containing rounded resolution """ - return (round_value_up(resolution[0], multiples[0]), round_value_up(resolution[0], multiples[0])) + return (round_value_up(resolution[0], multiples[0]), round_value_up(resolution[1], multiples[1]))