Skip to content

Commit 7fcdd0f

Browse files
Auto-format code with black (#737)
Co-authored-by: explosion-bot <[email protected]>
1 parent af0e3de commit 7fcdd0f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

thinc/tests/backends/test_ops.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,10 @@ def test_ngrams():
13651365
@pytest.mark.parametrize("dtype", ["float32", "float64"])
13661366
@pytest.mark.parametrize("torch_func", TORCH_FUNCS)
13671367
@settings(max_examples=MAX_EXAMPLES, deadline=None)
1368-
@given(x=strategies.floats(min_value=-30, max_value=30), dY=strategies.floats(min_value=-1, max_value=1))
1368+
@given(
1369+
x=strategies.floats(min_value=-30, max_value=30),
1370+
dY=strategies.floats(min_value=-1, max_value=1),
1371+
)
13691372
def test_compare_activations_to_torch(ops, dtype, x, dY, torch_func):
13701373
import torch
13711374

0 commit comments

Comments
 (0)