diff --git a/pokemongo_bot/cell_workers/recycle_items_worker.py b/pokemongo_bot/cell_workers/recycle_items_worker.py index 9a8700b21d..933b4831d1 100644 --- a/pokemongo_bot/cell_workers/recycle_items_worker.py +++ b/pokemongo_bot/cell_workers/recycle_items_worker.py @@ -10,7 +10,6 @@ def __init__(self, bot): self.item_list = bot.item_list def work(self): - logger.log('Starting to recycle items...', 'yellow') item_count_dict = self.bot.item_inventory_count('all') for item_id, bag_count in item_count_dict.iteritems(): @@ -42,7 +41,6 @@ def work(self): logger.log(message, 'green') else: logger.log("-- Failed to recycle " + item_name + "has failed!", 'red') - logger.log('Finished.', 'yellow') def send_recycle_item_request(self, item_id, count): self.api.recycle_inventory_item(item_id=item_id, count=count)