9 lines
130 B
Python
9 lines
130 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from weboob.tools.browser import BasePage
|
|
|
|
__all__ = ['IndexPage']
|
|
|
|
|
|
class IndexPage(BasePage):
|
|
pass
|