From a5273290800b2b8486eda912469e2c85c69f54b3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 9 Mar 2018 08:12:57 +0530 Subject: [PATCH] pep8 --- recipes/granta.recipe | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/granta.recipe b/recipes/granta.recipe index 948dd53863..bd3d5d8b5c 100644 --- a/recipes/granta.recipe +++ b/recipes/granta.recipe @@ -159,10 +159,12 @@ def absurl(url): url = 'https://www.granta.com' + url return url + def stripstyle(tag): if tag is not None: del tag['style'] + def get_innermost_string(tag): while hasattr(tag, 'contents') and len(tag.contents) > 0 and tag.contents[0] is not None: tag = tag.contents[0]