Skip to content

Commit

Permalink
fix variable name (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
MateoLostanlen committed Jul 19, 2022
1 parent ee813bc commit 8029738
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner/src/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def setup_engine():
loop_time = config_data["loop_time"]
latitude = config_data["latitude"]
longitude = config_data["longitude"]
model_path = config_data["model_path"]
model_weights = config_data["model_weights"]

# Loading pi zeros datas
with open("data/cameras_credentials.json") as json_file:
Expand All @@ -43,7 +43,7 @@ def setup_engine():
save_evry_n_frame,
latitude,
longitude,
model_path=model_path,
model_weights=model_weights,
)

return engine, cameras_credentials, loop_time
Expand Down

0 comments on commit 8029738

Please sign in to comment.