From 430e22cc69a5e1867911c844cb429900921b1177 Mon Sep 17 00:00:00 2001 From: Github Actions Bot Date: Sun, 25 Feb 2024 20:41:04 +0000 Subject: [PATCH] style: [CI] format --- spatialyze/video_processor/utils/insert_trajectory.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spatialyze/video_processor/utils/insert_trajectory.py b/spatialyze/video_processor/utils/insert_trajectory.py index 2b6cc22..de4e592 100644 --- a/spatialyze/video_processor/utils/insert_trajectory.py +++ b/spatialyze/video_processor/utils/insert_trajectory.py @@ -31,9 +31,7 @@ def insert_trajectory( prevPoint: Float3 | None = None st, en = ids[0], ids[-1] - tuples: list[PointTuple[Float3] | None] = [ - None for _ in range(st, en + 1) - ] + tuples: list[PointTuple[Float3] | None] = [None for _ in range(st, en + 1)] P = TypeVar("P", Float3, Point)