| 190 | self.fids = fids |
| 191 | |
| 192 | class PackageDoesNotExists(Exception): |
| 193 | __slots__ = ['pid'] |
| 194 | |
| 195 | def __init__(self, pid=None): |
| 196 | self.pid = pid |
| 197 | |
| 198 | class ServerStatus(BaseObject): |
| 199 | __slots__ = ['pause', 'active', 'queue', 'total', 'speed', 'download', 'reconnect'] |
no outgoing calls
no test coverage detected