remove unused imports, variables and commented code

from integrations and templatetags
This commit is contained in:
smilerz
2023-09-13 09:35:22 -05:00
parent aba7f8db5c
commit 78b1386a1c
6 changed files with 29 additions and 24 deletions

View File

@ -1,17 +1,12 @@
import base64
import json
from io import BytesIO
from gettext import gettext as _
import requests
import validators
from lxml import etree
from cookbook.helper.ingredient_parser import IngredientParser
from cookbook.helper.recipe_url_import import parse_servings, parse_time, parse_servings_text
from cookbook.helper.recipe_url_import import parse_servings, parse_servings_text, parse_time
from cookbook.integration.integration import Integration
from cookbook.models import Ingredient, Keyword, Recipe, Step
from cookbook.models import Ingredient, Recipe, Step
class Cookmate(Integration):