PEP8 cleanups.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-09-05 04:56:39 -04:00
parent 4b2226cf04
commit 64ca5a623f
24 changed files with 28 additions and 44 deletions

View File

@@ -79,7 +79,7 @@ class DashboardWidgetDocumentsTypesTotal(DashboardWidgetNumeric):
class DashboardWidgetDocumentsNewThisMonth(DashboardWidgetNumeric):
icon_class = icon_dashboard_new_documents_this_month
label = _('New documents this month')
link=reverse_lazy(
link = reverse_lazy(
'statistics:statistic_detail',
args=('new-documents-per-month',)
)
@@ -92,7 +92,7 @@ class DashboardWidgetDocumentsNewThisMonth(DashboardWidgetNumeric):
class DashboardWidgetDocumentsPagesNewThisMonth(DashboardWidgetNumeric):
icon_class = icon_dashboard_pages_per_month
label = _('New pages this month')
link=reverse_lazy(
link = reverse_lazy(
'statistics:statistic_detail',
args=('new-document-pages-per-month',)
)