Skip to content

Commit df4613e

Browse files
committed
Update formatting in Python tests using the current version of Black.
1 parent f9ed884 commit df4613e

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

examples/simple/tests/test_ext.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
import numpy as np
2-
from rust_ext import head, axpy, conj, mult, extract, add_minutes_to_seconds, polymorphic_add
2+
from rust_ext import (
3+
head,
4+
axpy,
5+
conj,
6+
mult,
7+
extract,
8+
add_minutes_to_seconds,
9+
polymorphic_add,
10+
)
311

412

513
def test_head():
6-
x = np.array(['first', None, 42])
14+
x = np.array(["first", None, 42])
715
first = head(x)
8-
assert first == 'first'
16+
assert first == "first"
917

1018

1119
def test_axpy():

0 commit comments

Comments
 (0)