Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ankona committed Sep 7, 2024
1 parent fdeec78 commit 4e21a43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/dragon/test_featurestore.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,9 @@ def test_backbone_wait_for_multikey(
p2.start()
for p in processes:
p.join(timeout=max_delay * 2)
p2.join(timeout=max_delay * 2) # give it 10 seconds longer than p2 timeout for backoff
p2.join(
timeout=max_delay * 2
) # give it 10 seconds longer than p2 timeout for backoff

# use without a wait to verify all values are written
actual_values = backbone.wait_for([*extra_keys], timeout=0.01)
Expand Down

0 comments on commit 4e21a43

Please sign in to comment.