mirror of
https://github.com/Crocmagnon/advent-of-code.git
synced 2024-11-05 14:23:58 +01:00
Ignore function complexity
This commit is contained in:
parent
8fc1e7fce1
commit
ee84b28f5a
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue