add missing space

This commit is contained in:
Peter Buchegger 2023-01-13 22:38:57 +01:00
parent 28f33fd8b5
commit bbdae18b0f
1 changed files with 1 additions and 2 deletions

View File

@ -372,7 +372,7 @@ class PacketRepository(Repository):
sql = sql + \
selectCursor.mogrify(
"""order by marker_id desc, id desc limit 1""")
""" order by marker_id desc, id desc limit 1""")
# Sort by marker_id first and packet as second, otherwise client might render it wrong
selectCursor.execute(sql)
@ -432,7 +432,6 @@ class PacketRepository(Repository):
else:
return self.create()
def getMostRecentConfirmedObjectListByStationIdList(self, stationIdList, minTimestamp):
"""Returns an array of the most recent confirmed Packet's specified by station id's