Skip to content

Commit

Permalink
update flask version
Browse files Browse the repository at this point in the history
  • Loading branch information
tdubsFO committed Dec 21, 2023
1 parent 1239b4a commit 3fdd1fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ classifiers = [
]
dependencies = [
"requests",
"flask",
"flask==1.1.2",
]

0 comments on commit 3fdd1fb

Please sign in to comment.