Skip to content

Commit 1aede49

Browse files
committed
Fixes style.
1 parent 6f6b15c commit 1aede49

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nx_cugraph/tests/test_bc.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ def test_bc():
2323
assert pytest.approx(bc_nx) == bc_cg
2424

2525

26-
@pytest.mark.skipif(_nxver < (3, 5),
27-
reason="Test only supported for BC normalization used in NX 3.5+")
26+
@pytest.mark.skipif(
27+
_nxver < (3, 5), reason="Test only supported for BC normalization used in NX 3.5+"
28+
)
2829
def test_bc_rng():
2930
G = nx.karate_club_graph()
3031
bc_nx = nx.betweenness_centrality(G, k=4, seed=42)

0 commit comments

Comments
 (0)