mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 23:07:42 -02:30
updated black and ran again to fix lint formatting
Signed-off-by: jessicamack <jmack@redhat.com>
This commit is contained in:
@@ -35,7 +35,15 @@ class Command(BaseCommand):
|
|||||||
|
|
||||||
def host_metric_summary_monthly_queryset(self, result, offset=0, limit=BATCHED_FETCH_COUNT):
|
def host_metric_summary_monthly_queryset(self, result, offset=0, limit=BATCHED_FETCH_COUNT):
|
||||||
list_of_queryset = list(
|
list_of_queryset = list(
|
||||||
result.values('id', 'date', 'license_consumed', 'license_capacity', 'hosts_added', 'hosts_deleted', 'indirectly_managed_hosts',).order_by(
|
result.values(
|
||||||
|
'id',
|
||||||
|
'date',
|
||||||
|
'license_consumed',
|
||||||
|
'license_capacity',
|
||||||
|
'hosts_added',
|
||||||
|
'hosts_deleted',
|
||||||
|
'indirectly_managed_hosts',
|
||||||
|
).order_by(
|
||||||
'date'
|
'date'
|
||||||
)[offset : offset + limit]
|
)[offset : offset + limit]
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user