Added edmonds_blossom_algorithm.py #11086
Annotations
10 errors
Ruff (I001):
graphs/edmonds_blossom_algorithm.py#L1
graphs/edmonds_blossom_algorithm.py:1:1: I001 Import block is un-sorted or un-formatted
|
Ruff (UP035):
graphs/edmonds_blossom_algorithm.py#L2
graphs/edmonds_blossom_algorithm.py:2:1: UP035 `typing.List` is deprecated, use `list` instead
|
Ruff (UP035):
graphs/edmonds_blossom_algorithm.py#L2
graphs/edmonds_blossom_algorithm.py:2:1: UP035 `typing.Tuple` is deprecated, use `tuple` instead
|
Ruff (UP035):
graphs/edmonds_blossom_algorithm.py#L2
graphs/edmonds_blossom_algorithm.py:2:1: UP035 `typing.Dict` is deprecated, use `dict` instead
|
Ruff (UP006):
graphs/edmonds_blossom_algorithm.py#L10
graphs/edmonds_blossom_algorithm.py:10:33: UP006 Use `list` instead of `List` for type annotation
|
Ruff (UP006):
graphs/edmonds_blossom_algorithm.py#L10
graphs/edmonds_blossom_algorithm.py:10:38: UP006 Use `tuple` instead of `Tuple` for type annotation
|
Ruff (UP006):
graphs/edmonds_blossom_algorithm.py#L10
graphs/edmonds_blossom_algorithm.py:10:78: UP006 Use `list` instead of `List` for type annotation
|
Ruff (UP006):
graphs/edmonds_blossom_algorithm.py#L10
graphs/edmonds_blossom_algorithm.py:10:83: UP006 Use `tuple` instead of `Tuple` for type annotation
|
Ruff (E501):
graphs/edmonds_blossom_algorithm.py#L10
graphs/edmonds_blossom_algorithm.py:10:89: E501 Line too long (99 > 88)
|
Ruff (UP006):
graphs/edmonds_blossom_algorithm.py#L21
graphs/edmonds_blossom_algorithm.py:21:16: UP006 Use `dict` instead of `Dict` for type annotation
|