diff --git a/.DS_Store b/.DS_Store index a2983d3..c1d494e 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/app/main.py b/app/main.py index 1e0c36d..d9e08ce 100644 --- a/app/main.py +++ b/app/main.py @@ -42,7 +42,9 @@ def main(): yaw = round(((yawDeg + 360) % 360),2) latitude = gps_data['lat'] / 1e7 longitude = gps_data['lon'] / 1e7 - column_values = [unix_timestamp, date, timenow, distance, confidence, yaw, latitude, longitude] + column_values = [ + + ] data = column_values with open(log_file, 'a', newline='') as csvfile: # Create or append to the log file and write the data writer = csv.writer(csvfile) diff --git a/app/pyproject.toml b/app/pyproject.toml index e6098bd..5a38431 100644 --- a/app/pyproject.toml +++ b/app/pyproject.toml @@ -9,6 +9,6 @@ classifiers = [ ] dependencies = [ "requests", - "flask", + "flask==1.1.2", ]