Skip to content

Commit 7df7439

Browse files
black formatting
1 parent cc23265 commit 7df7439

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/main/tgeompoint_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,14 +331,14 @@ def test_copy_constructor(self, temporal):
331331

332332
def test_from_arrays_constructor(self):
333333
tg = TGeomPointSeq.from_arrays(
334-
t = ["2019-09-01", "2019-09-02", "2019-09-03"],
335-
x = np.array([0.1, 0.2, 0.3]),
336-
y = np.array([1, 2, 3]),
334+
t=["2019-09-01", "2019-09-02", "2019-09-03"],
335+
x=np.array([0.1, 0.2, 0.3]),
336+
y=np.array([1, 2, 3]),
337337
upper_inc=True,
338338
)
339339
assert tg == TGeomPointSeq(
340340
"{POINT(0.1 1)@2019-09-01 00:00:00+00, POINT(0.2 2)@2019-09-02 00:00:00+00, POINT(0.3 3)@2019-09-03 00:00:00+00}",
341-
upper_inc=True
341+
upper_inc=True,
342342
)
343343

344344

0 commit comments

Comments
 (0)