Skip to content

Commit e2fa2a5

Browse files
committed
Linting
1 parent b9fb45c commit e2fa2a5

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
@@ -64,6 +64,7 @@
6464
def get_numpy_vector(input_list: list) -> Any:
6565
try:
6666
import numpy as np
67+
6768
return np.array(input_list)
6869
except ModuleNotFoundError:
6970
return input_list
@@ -307,21 +308,28 @@ class TestInsertManyWithTypedDict(TypedDict):
307308
[
308309
(
309310
[
310-
DataObject(properties={"name": "some numpy one"}, vector=get_numpy_vector([1, 2, 3])),
311+
DataObject(
312+
properties={"name": "some numpy one"}, vector=get_numpy_vector([1, 2, 3])
313+
),
311314
],
312315
False,
313316
),
314317
(
315318
[
316-
DataObject(properties={"name": "some numpy one"}, vector=get_numpy_vector([1, 2, 3])),
317-
DataObject(properties={"name": "some numpy two"}, vector=get_numpy_vector([11, 12, 13])),
319+
DataObject(
320+
properties={"name": "some numpy one"}, vector=get_numpy_vector([1, 2, 3])
321+
),
322+
DataObject(
323+
properties={"name": "some numpy two"}, vector=get_numpy_vector([11, 12, 13])
324+
),
318325
],
319326
False,
320327
),
321328
(
322329
[
323330
DataObject(
324-
properties={"name": "some numpy 2d"}, vector=get_numpy_vector([[1, 2, 3], [11, 12, 13]])
331+
properties={"name": "some numpy 2d"},
332+
vector=get_numpy_vector([[1, 2, 3], [11, 12, 13]]),
325333
),
326334
],
327335
True,

0 commit comments

Comments
 (0)