From 00f1982c18ed71817ec0cb4f98b3729aad76d03d Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Wed, 30 Jun 2010 19:08:33 +0200 Subject: [PATCH] pyflakes cleanup --- weboob/frontends/havesex/havesex.py | 2 -- weboob/tools/application/console.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/weboob/frontends/havesex/havesex.py b/weboob/frontends/havesex/havesex.py index 924540ba..f5a63379 100644 --- a/weboob/frontends/havesex/havesex.py +++ b/weboob/frontends/havesex/havesex.py @@ -45,8 +45,6 @@ class HaveSex(PromptApplication): return self.loop() - return self.weboob.backends.get(bname, None), id - @PromptApplication.command("exit program") def command_exit(self): print 'Returning in real-life...' diff --git a/weboob/tools/application/console.py b/weboob/tools/application/console.py index f6877a7d..babdbbf6 100644 --- a/weboob/tools/application/console.py +++ b/weboob/tools/application/console.py @@ -28,7 +28,7 @@ from weboob.modules import BackendsConfig from .base import BaseApplication from .formatters import formatters -from .results import Results, ResultsCondition, ResultsConditionException +from .results import ResultsCondition, ResultsConditionException __all__ = ['ConsoleApplication']