Skip to content

Commit

Permalink
lint formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
kxm180046 committed Feb 21, 2023
1 parent 69d7552 commit f4b6442
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions tests/python/pytorch/nn/test_nn.py
Original file line number Diff line number Diff line change
Expand Up @@ -1592,14 +1592,21 @@ def forward(self, graph, feat, eweight=None):


@parametrize_idtype
@pytest.mark.parametrize("g", get_cases(["homo"], exclude=["zero-degree",
"homo-zero-degree",
"has_feature",
"has_scalar_e_feature",
"row_sorted",
"col_sorted",
"batched"
]))
@pytest.mark.parametrize(
"g",
get_cases(
["homo"],
exclude=[
"zero-degree",
"homo-zero-degree",
"has_feature",
"has_scalar_e_feature",
"row_sorted",
"col_sorted",
"batched",
],
),
)
@pytest.mark.parametrize("n_classes", [2])
def test_subgraphx(g, idtype, n_classes):
ctx = F.ctx()
Expand Down

0 comments on commit f4b6442

Please sign in to comment.