From e35755c29ff66fb0f09184bff8e28bd86dbd7d28 Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Sat, 16 Mar 2013 01:00:28 +0100 Subject: [PATCH] New pep8 fixes --- modules/750g/browser.py | 1 + modules/750g/pages.py | 1 - modules/750g/test.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/750g/browser.py b/modules/750g/browser.py index 1514aa75..69ed93e7 100644 --- a/modules/750g/browser.py +++ b/modules/750g/browser.py @@ -25,6 +25,7 @@ from .pages import RecipePage, ResultsPage __all__ = ['SevenFiftyGramsBrowser'] + class SevenFiftyGramsBrowser(BaseBrowser): DOMAIN = 'www.750g.com' PROTOCOL = 'http' diff --git a/modules/750g/pages.py b/modules/750g/pages.py index 93e7e885..670bc73b 100644 --- a/modules/750g/pages.py +++ b/modules/750g/pages.py @@ -61,7 +61,6 @@ class ResultsPage(BasePage): recipe.cooking_time = NotLoaded recipe.preparation_time = NotLoaded yield recipe - class RecipePage(BasePage): diff --git a/modules/750g/test.py b/modules/750g/test.py index f4fdf1fa..92d40460 100644 --- a/modules/750g/test.py +++ b/modules/750g/test.py @@ -19,6 +19,7 @@ from weboob.tools.test import BackendTest + class SevenFiftyGramsTest(BackendTest): BACKEND = '750g' @@ -30,4 +31,3 @@ class SevenFiftyGramsTest(BackendTest): assert full_recipe.ingredients assert full_recipe.title assert full_recipe.preparation_time -