From 92a5a11659332a2d39f0739d4f8fcb9127d9bd87 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 29 Oct 2019 15:28:23 -0700 Subject: [PATCH] ssh: Fix flake8 failure by removing unused import Signed-off-by: Sunil Mohan Adapa --- plinth/modules/ssh/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/ssh/views.py b/plinth/modules/ssh/views.py index 47d381e38..fc913085d 100644 --- a/plinth/modules/ssh/views.py +++ b/plinth/modules/ssh/views.py @@ -20,7 +20,7 @@ Views for the SSH module from django.contrib import messages from django.utils.translation import ugettext_lazy as _ -from plinth import action_utils, actions +from plinth import actions from plinth.modules import ssh from plinth.views import AppView