PEP 8 fix
This commit is contained in:
parent
5a7ae0a5bd
commit
3bc2312338
15 changed files with 48 additions and 7 deletions
|
|
@ -1,3 +1,4 @@
|
|||
"browser for inrocks.fr website"
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2011 Julien Hebert
|
||||
|
|
@ -21,15 +22,21 @@ from weboob.tools.browser import BaseBrowser
|
|||
|
||||
|
||||
class NewspaperInrocksBrowser(BaseBrowser):
|
||||
"NewspaperInrocksBrowser class"
|
||||
PAGES = {
|
||||
'.*': ArticlePage,
|
||||
|
||||
}
|
||||
|
||||
def is_logged(self):
|
||||
return False
|
||||
|
||||
def login(self):
|
||||
pass
|
||||
|
||||
def fillobj(self, obj, fields):
|
||||
pass
|
||||
|
||||
def get_content(self, _id):
|
||||
url = _id
|
||||
self.location(url)
|
||||
"return page article content"
|
||||
self.location(_id)
|
||||
return self.page.get_article(_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue