8206:adf11836cfce | 8207:d359172d11be |
---|---|
6 """ | 6 """ |
7 Module implementing a structure to hold the data for a speed dial page. | 7 Module implementing a structure to hold the data for a speed dial page. |
8 """ | 8 """ |
9 | 9 |
10 | 10 |
11 class Page(object): | 11 class Page: |
12 """ | 12 """ |
13 Class to hold the data for a speed dial page. | 13 Class to hold the data for a speed dial page. |
14 """ | 14 """ |
15 def __init__(self, url="", title="", broken=False): | 15 def __init__(self, url="", title="", broken=False): |
16 """ | 16 """ |