Pep8 cleaning, fix author of test.py

This commit is contained in:
Florent 2013-05-14 11:21:13 +02:00
commit bda8df7e9b
5 changed files with 18 additions and 12 deletions

View file

@ -18,13 +18,14 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from weboob.capabilities.bill import ICapBill, SubscriptionNotFound,\
BillNotFound, Subscription, Bill
BillNotFound, Subscription, Bill
from weboob.tools.backend import BaseBackend, BackendConfig
from weboob.tools.value import ValueBackendPassword
from .browser import GdfSuez
__all__ = ['GdfSuezBackend']
class GdfSuezBackend(BaseBackend, ICapBill):
NAME = 'gdfsuez'
MAINTAINER = u'Mathieu Jourdan'
@ -38,7 +39,7 @@ class GdfSuezBackend(BaseBackend, ICapBill):
ValueBackendPassword('password',
label='Password',
masked=True)
)
)
BROWSER = GdfSuez
def create_default_browser(self):