Skip to content

Commit 51d5b7d

Browse files
committed
Fix lint errors
1 parent dfd5427 commit 51d5b7d

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

mesh2vec/mesh2vec_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def _collect_feature_values(
370370
ref_values: Optional[List[Union[float, int, str]]] = None,
371371
) -> List[List[Union[float, int, str]]]:
372372
"""helper method to collect and aggregate data from all hyper nodes"""
373-
# pylint: disable=too-many-arguments,too-many-positional-arguments
373+
# pylint: disable=too-many-arguments,too-many-positional-arguments,line-too-long
374374
check_distance_arg(dist, self)
375375

376376
if default_value is None:

tests/test_mesh2vec_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def test_invalid_hyperedges(strategy: str) -> None:
5050

5151
@pytest.mark.parametrize("strategy", strategies)
5252
def test_invalid_vtx_ids_argument(strategy: str) -> None:
53+
# pylint: disable=line-too-long
5354
"""test that InvalidVtxIdsArgument is raised"""
5455
with pytest.raises(InvalidVtxIdsArgument):
5556
edges_0 = {"first": ["a", "b", "c"], "second": ["x", "y"], "third": ["x", "a"]}

0 commit comments

Comments
 (0)