From 066819da6ff8e1b424442cc529e1ee6c896b7400 Mon Sep 17 00:00:00 2001 From: hay-kot Date: Sat, 20 Feb 2021 17:25:09 -0900 Subject: [PATCH] remove print --- mealie/services/scraper/cleaner.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/mealie/services/scraper/cleaner.py b/mealie/services/scraper/cleaner.py index 37083d9f2..1f7b02ab5 100644 --- a/mealie/services/scraper/cleaner.py +++ b/mealie/services/scraper/cleaner.py @@ -15,7 +15,6 @@ class Cleaner: @staticmethod def clean(recipe_data: dict, url=None) -> dict: - print(recipe_data) """Main entrypoint to clean a recipe extracted from the web and format the data into an accectable format for the database @@ -67,7 +66,6 @@ class Cleaner: return [] # One long string split by (possibly multiple) new lines - print(instructions) if type(instructions) == str: return [ {"text": Cleaner._instruction(line)}