Skip to content

Commit

Permalink
Merge branch 'postgis' of github.com:apperception-db/spatialyze into …
Browse files Browse the repository at this point in the history
…postgis
  • Loading branch information
chanwutk committed Feb 25, 2024
2 parents 9a0d6f1 + 430e22c commit 2483d58
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions spatialyze/video_processor/utils/insert_trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ def insert_trajectory(

prevPoint: Float3 | None = None
st, en = min(ids), max(ids)
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)

Expand Down

0 comments on commit 2483d58

Please sign in to comment.