delete GPX file after processing

This commit is contained in:
Riccardo Berto 2021-03-01 10:45:43 +01:00
parent 00fd7cbeeb
commit 5fc5add5c6

View File

@ -105,6 +105,7 @@ def process_gpx_files(tx: Connection):
geog=f'POINT({point.latitude} {point.longitude})',
speed=point.speed,
elevation=point.elevation,),)
os.remove(filepath)
def main():