Each browser module is responsible for fetching its own tree subnodes.
(self)
| 253 | |
| 254 | @abstractmethod |
| 255 | def get_nodes(self): |
| 256 | """ |
| 257 | Each browser module is responsible for fetching |
| 258 | its own tree subnodes. |
| 259 | """ |
| 260 | return [] |
| 261 | |
| 262 | @property |
| 263 | @abstractmethod |