Conditions | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | """API for working with Nvim tabpages.""" |
||
13 | 5 | def __init__(self, *args): |
|
14 | """Initialize from session and code_data immutable object. |
||
15 | |||
16 | The `code_data` contains serialization information required for |
||
17 | msgpack-rpc calls. It must be immutable for Buffer equality to work. |
||
18 | """ |
||
19 | 5 | super(Tabpage, self).__init__(*args) |
|
20 | 5 | self.windows = RemoteSequence(self, 'nvim_tabpage_list_wins') |
|
21 | |||
43 |