Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
the-other-james committed Sep 21, 2023
1 parent 9fcecbc commit 3f294e3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions onair/data_handling/parsers/csv_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ def get_just_data(self):
return self.sim_data

def get_vehicle_metadata(self):
print("get_vehicle_metadata")
print(self.all_headers)
return self.all_headers, self.binning_configs['test_assignments']

# Get the data at self.index and increment the index
Expand Down
2 changes: 0 additions & 2 deletions onair/src/run_scripts/sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ def run_sim(self, IO_Flag=False, dev_flag=False, viz_flag = True):
last_diagnosis = time_step
last_fault = time_step

print("HEY, are we run_sim or not?")
while self.simData.has_more() and time_step < MAX_STEPS:
#print("This is the loop")
next = self.simData.get_next()
self.agent.reason(next)
self.IO_check(time_step, IO_Flag)
Expand Down

0 comments on commit 3f294e3

Please sign in to comment.