8206:adf11836cfce | 8207:d359172d11be |
---|---|
8 """ | 8 """ |
9 | 9 |
10 from PyQt5.QtCore import pyqtSignal, QUrl, QObject | 10 from PyQt5.QtCore import pyqtSignal, QUrl, QObject |
11 | 11 |
12 | 12 |
13 class ClosedTab(object): | 13 class ClosedTab: |
14 """ | 14 """ |
15 Class implementing a structure to store data about a closed tab. | 15 Class implementing a structure to store data about a closed tab. |
16 """ | 16 """ |
17 def __init__(self, url=None, title="", position=-1): | 17 def __init__(self, url=None, title="", position=-1): |
18 """ | 18 """ |