fix missing import and pyflakes errors
This commit is contained in:
parent
e759aac0a8
commit
15e6e19e16
4 changed files with 15 additions and 19 deletions
|
|
@ -18,7 +18,7 @@
|
|||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from weboob.tools.browser import BaseBrowser, BrowserIncorrectPassword
|
||||
from weboob.tools.browser import BaseBrowser
|
||||
from weboob.backends.ing import pages
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -19,11 +19,10 @@
|
|||
|
||||
|
||||
from .accounts_list import AccountsList
|
||||
from .account_coming import AccountComing
|
||||
from .account_history import AccountHistory
|
||||
from .login import LoginPage, LoginPage2, ConfirmPage, MessagePage
|
||||
|
||||
class AccountPrelevement(AccountsList): pass
|
||||
|
||||
__all__ = ['AccountsList', 'AccountComing', 'AccountHistory', 'LoginPage',
|
||||
__all__ = ['AccountsList', 'AccountHistory', 'LoginPage', 'LoginPage2',
|
||||
'ConfirmPage', 'MessagePage', 'AccountPrelevement']
|
||||
|
|
|
|||
|
|
@ -18,12 +18,10 @@
|
|||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
import re
|
||||
from datetime import date
|
||||
|
||||
from weboob.tools.browser import BasePage
|
||||
from weboob.capabilities.bank import Operation
|
||||
from weboob.capabilities.base import NotAvailable
|
||||
|
||||
|
||||
__all__ = ['AccountHistory']
|
||||
|
|
|
|||
|
|
@ -20,10 +20,9 @@
|
|||
|
||||
import re
|
||||
from weboob.tools.mech import ClientForm
|
||||
import urllib
|
||||
from logging import error
|
||||
|
||||
from weboob.tools.browser import BasePage, BrowserUnavailable
|
||||
from weboob.tools.browser import BasePage
|
||||
from weboob.tools.captcha.virtkeyboard import VirtKeyboard,VirtKeyboardError
|
||||
import tempfile
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue