Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mfbalin committed Jul 18, 2024
1 parent 10ba72c commit 9f40899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/dgl/graphbolt/impl/gpu_cached_feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def read_async(self, ids: torch.Tensor):
for _ in range(
self._fallback_feature.read_async_num_stages(missing_keys.device)
):
missing_values_future = next(fallback_reader)
missing_values_future = next(fallback_reader, None)
yield # fallback feature stages.
values[missing_index] = missing_values_future.wait()

Expand Down

0 comments on commit 9f40899

Please sign in to comment.