Skip to content

Commit

Permalink
Always directly raise exception, remove pdb debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
Javex committed Oct 27, 2023
1 parent 6ad8c61 commit 66c56e2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hotprices_au/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ def get_canoncial_for(store, raw_items, category_map, today):
except Exception:
logger.exception(f"Unable to process store '{store}' item: {raw_item}")
import pprint; pprint.pprint(raw_item)
import pdb; pdb.set_trace()
continue
raise
if canonical_item is None:
continue
canonical_item['store'] = store
Expand Down

0 comments on commit 66c56e2

Please sign in to comment.