From c133b556d12e43499c29712742e5ba698845db0f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 2 Aug 2017 21:16:04 -0400 Subject: [PATCH] PEP8 cleanups. Signed-off-by: Roberto Rosario --- mayan/apps/cabinets/widgets.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mayan/apps/cabinets/widgets.py b/mayan/apps/cabinets/widgets.py index a75043c2a2..d36dbc83dc 100644 --- a/mayan/apps/cabinets/widgets.py +++ b/mayan/apps/cabinets/widgets.py @@ -1,12 +1,11 @@ from __future__ import unicode_literals from django.apps import apps -from django.template.loader import render_to_string from django.utils.html import format_html_join -from django.utils.safestring import mark_safe from .permissions import permission_cabinet_view + def jstree_data(node, selected_node): result = [] result.append('{') @@ -51,4 +50,4 @@ def widget_document_cabinets(document, user): ( (cabinet.get_full_path(),) for cabinet in cabinets ) - ) \ No newline at end of file + )