Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Oct 2, 2024
1 parent cfecd90 commit 96d2e20
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,8 @@ def test_mg_uniform_neighbor_sample_simple(dask_client, input_combo):
)

input_df = symmetrize_ddf(
input_df,
src_name="src",
dst_name = "dst",
symmetrize=not dg.is_directed())
input_df, src_name="src", dst_name="dst", symmetrize=not dg.is_directed()
)

result_nbr = uniform_neighbor_sample(
dg,
Expand Down Expand Up @@ -256,10 +254,8 @@ def test_mg_uniform_neighbor_sample_tree(dask_client, directed):
input_df = G.input_df

input_df = symmetrize_ddf(
input_df,
src_name="src",
dst_name = "dst",
symmetrize=not G.is_directed())
input_df, src_name="src", dst_name="dst", symmetrize=not G.is_directed()
)

join = result_nbr.merge(
input_df, left_on=[*result_nbr.columns[:2]], right_on=[*input_df.columns[:2]]
Expand Down

0 comments on commit 96d2e20

Please sign in to comment.