Skip to content

Commit 7146a4c

Browse files
committed
Format code
1 parent 2b252b8 commit 7146a4c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python-wrapper/tests/test_gds.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ def test_from_gds_integration(gds: Any) -> None:
3030
)
3131

3232
with gds.graph.construct("flo", nodes, rels) as G:
33-
VG = from_gds(gds, G, size_property="score", additional_node_properties=["component"], node_radius_min_max=(3.14, 1337))
33+
VG = from_gds(
34+
gds, G, size_property="score", additional_node_properties=["component"], node_radius_min_max=(3.14, 1337)
35+
)
3436

3537
assert len(VG.nodes) == 3
3638
assert sorted(VG.nodes, key=lambda x: x.id) == [

0 commit comments

Comments
 (0)