File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55
66from ..hubstorage .collectionsrt import Collection as _Collection
77
8- from .proxy import _Proxy , _DownloadableProxyMixin
8+ from .proxy import _Proxy
99from .utils import update_kwargs
1010
1111
12- class Collections (_Proxy , _DownloadableProxyMixin ):
12+ class Collections (_Proxy ):
1313 """Access to project collections.
1414
1515 Not a public constructor: use :class:`~scrapinghub.client.projects.Project`
Original file line number Diff line number Diff line change 33from .proxy import _ItemsResourceProxy , _DownloadableProxyMixin
44
55
6- class Items (_ItemsResourceProxy , _DownloadableProxyMixin ):
6+ class Items (_DownloadableProxyMixin , _ItemsResourceProxy ):
77 """Representation of collection of job items.
88
99 Not a public constructor: use :class:`~scrapinghub.client.jobs.Job`
Original file line number Diff line number Diff line change 77from .utils import LogLevel
88
99
10- class Logs (_ItemsResourceProxy , _DownloadableProxyMixin ):
10+ class Logs (_DownloadableProxyMixin , _ItemsResourceProxy ):
1111 """Representation of collection of job logs.
1212
1313 Not a public constructor: use :class:`~scrapinghub.client.jobs.Job` instance
Original file line number Diff line number Diff line change 33from .proxy import _ItemsResourceProxy , _DownloadableProxyMixin
44
55
6- class Requests (_ItemsResourceProxy , _DownloadableProxyMixin ):
6+ class Requests (_DownloadableProxyMixin , _ItemsResourceProxy ):
77 """Representation of collection of job requests.
88
99 Not a public constructor: use :class:`~scrapinghub.client.jobs.Job` instance
You can’t perform that action at this time.
0 commit comments