Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
schroedtert authored and Ozaq committed Apr 22, 2024
1 parent d5f7681 commit f0d1b20
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python_modules/jupedsim/jupedsim/sqlite_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import sqlite3
from pathlib import Path
from typing import Final

from shapely import box, from_wkt

from jupedsim.serialization import TrajectoryWriter
Expand Down Expand Up @@ -156,8 +157,6 @@ def write_iteration_state(self, simulation: Simulation) -> None:
old_ymin = self._y_min(cur)
old_ymax = self._y_max(cur)

old_bb = box(old_xmin, old_ymin, old_xmax, old_ymax)

cur.executemany(
"INSERT OR REPLACE INTO metadata(key, value) VALUES(?,?)",
[
Expand Down

0 comments on commit f0d1b20

Please sign in to comment.