Skip to content

Commit a2f116b

Browse files
committed
Linting
1 parent 02abfbd commit a2f116b

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

integration/test_collection.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
def get_numpy_vector(input_list: list) -> Any:
6767
try:
6868
import numpy as np
69+
6970
return np.array(input_list)
7071
except ModuleNotFoundError:
7172
return input_list
@@ -309,21 +310,28 @@ class TestInsertManyWithTypedDict(TypedDict):
309310
[
310311
(
311312
[
312-
DataObject(properties={"name": "some numpy one"}, vector=get_numpy_vector([1, 2, 3])),
313+
DataObject(
314+
properties={"name": "some numpy one"}, vector=get_numpy_vector([1, 2, 3])
315+
),
313316
],
314317
False,
315318
),
316319
(
317320
[
318-
DataObject(properties={"name": "some numpy one"}, vector=get_numpy_vector([1, 2, 3])),
319-
DataObject(properties={"name": "some numpy two"}, vector=get_numpy_vector([11, 12, 13])),
321+
DataObject(
322+
properties={"name": "some numpy one"}, vector=get_numpy_vector([1, 2, 3])
323+
),
324+
DataObject(
325+
properties={"name": "some numpy two"}, vector=get_numpy_vector([11, 12, 13])
326+
),
320327
],
321328
False,
322329
),
323330
(
324331
[
325332
DataObject(
326-
properties={"name": "some numpy 2d"}, vector=get_numpy_vector([[1, 2, 3], [11, 12, 13]])
333+
properties={"name": "some numpy 2d"},
334+
vector=get_numpy_vector([[1, 2, 3], [11, 12, 13]]),
327335
),
328336
],
329337
True,

0 commit comments

Comments
 (0)