(self, resource, *args, **kwargs)
| 395 | |
| 396 | class ResourceListCommand(ResourceTableCommand): |
| 397 | def __init__(self, resource, *args, **kwargs): |
| 398 | super(ResourceListCommand, self).__init__( |
| 399 | resource, |
| 400 | "list", |
| 401 | "Get the list of %s." % resource.get_plural_display_name().lower(), |
| 402 | *args, |
| 403 | **kwargs, |
| 404 | ) |
| 405 | |
| 406 | |
| 407 | class ContentPackResourceListCommand(ResourceListCommand): |
nothing calls this directly
no test coverage detected