Skip to content

Commit

Permalink
Fixing lint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
drivanov committed Feb 5, 2024
1 parent 982537c commit 7f46f22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/python/pytorch/graphbolt/impl/test_ondisk_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1928,7 +1928,7 @@ def test_OnDiskDataset_preprocess_force_preprocess(capsys):
gb.ondisk_dataset.preprocess_ondisk_dataset(
test_dir,
include_original_edge_id=False,
force_preprocess=False
force_preprocess=False,
)
)
captured = capsys.readouterr().out.split("\n")
Expand Down Expand Up @@ -1967,7 +1967,7 @@ def test_OnDiskDataset_preprocess_force_preprocess(capsys):
gb.ondisk_dataset.preprocess_ondisk_dataset(
test_dir,
include_original_edge_id=False,
force_preprocess=True
force_preprocess=True,
)
)
captured = capsys.readouterr().out.split("\n")
Expand Down Expand Up @@ -2974,7 +2974,7 @@ def test_OnDiskDataset_auto_force_preprocess(capsys):
with pytest.warns(
DGLWarning,
match="Edge feature is stored, but edge IDs are not saved.",
):
):
dataset = gb.OnDiskDataset(
test_dir, include_original_edge_id=False
).load()
Expand Down

0 comments on commit 7f46f22

Please sign in to comment.