Ignore function complexity

This commit is contained in:
Gabriel Augendre 2022-12-16 12:09:21 +01:00
parent 8fc1e7fce1
commit ee84b28f5a

View file

@ -43,7 +43,7 @@ def solve_part_1(data: DataType) -> int:
return total
def lower_than(left: list, right: list) -> bool | None:
def lower_than(left: list, right: list) -> bool | None: # noqa: C901
"""True if left is lower than right."""
for left_item, right_item in zip(left, right):
if isinstance(left_item, int) and isinstance(right_item, int):