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]))