a lot of pyflakes and pylint fixes
This commit is contained in:
parent
28f622e071
commit
404d7290ba
43 changed files with 94 additions and 13 deletions
|
|
@ -223,8 +223,8 @@ class BaseApplication(object):
|
|||
else:
|
||||
res = getattr(backend, function)(*args, **kwargs)
|
||||
|
||||
if self.selected_fields:
|
||||
fields = self.selected_fields
|
||||
if selected_fields:
|
||||
fields = selected_fields
|
||||
else:
|
||||
fields = None
|
||||
|
||||
|
|
|
|||
|
|
@ -17,3 +17,5 @@
|
|||
|
||||
|
||||
from .webkitgtk import WebkitGtkFormatter
|
||||
|
||||
__all__ = ['WebkitGtkFormatter']
|
||||
|
|
|
|||
|
|
@ -1,2 +1,5 @@
|
|||
from .qt import QtApplication, QtMainWindow, QtDo, HTMLDelegate
|
||||
from .backendcfg import BackendCfg
|
||||
|
||||
__all__ = ['QtApplication', 'QtMainWindow', 'QtDo', 'HTMLDelegate',
|
||||
'BackendCfg']
|
||||
|
|
|
|||
|
|
@ -16,4 +16,10 @@
|
|||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from weboob.tools.browser.browser import *
|
||||
from weboob.tools.browser.browser import BrowserIncorrectPassword, BrowserBanned, \
|
||||
BrowserUnavailable, BrowserRetry, \
|
||||
BrowserHTTPError, BasePage, BaseBrowser
|
||||
|
||||
|
||||
__all__ = ['BrowserIncorrectPassword', 'BrowserBanned', 'BrowserUnavailable', 'BrowserRetry',
|
||||
'BrowserHTTPError', 'BasePage', 'BaseBrowser']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue