Skip to content

Commit

Permalink
Cleanup print statements
Browse files Browse the repository at this point in the history
Cleaning up previously used debug statements
  • Loading branch information
Mahadik, Mukul Chandrakant authored and Mahadik, Mukul Chandrakant committed Nov 17, 2023
1 parent 54a42a8 commit 7f70be9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions emission/analysis/classification/inference/labels/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ def compute_and_save_algorithms(self, user_id, trip_list):
def compute_and_save_ensemble(self, trip_list, predictions_dict):
il_list = []
for trip, key in zip(trip_list, predictions_dict):
# Print trip ids to see if order maintained:
print(f"Trip_ID: {trip.get_id()} and Pred_Key: {key}")
il = ecwl.Labelprediction()
il.trip_id = trip.get_id()
il.start_ts = trip["data"]["start_ts"]
Expand Down
3 changes: 0 additions & 3 deletions emission/tests/storageTests/TestTimeSeries.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,6 @@ def testFindEntriesCount(self):
count_ts9 = ts_new_user.find_entries_count(key_list=key_list1)
self.assertEqual(count_ts9, 0)

print("Assert Test for Count Data successful!")


if __name__ == '__main__':
import emission.tests.common as etc
etc.configLogging()
Expand Down

0 comments on commit 7f70be9

Please sign in to comment.