From 13077101529b8ffa183b7951b97393d91d6d6185 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Herv=C3=A9=20M=C3=A9nager?= <herve.menager@pasteur.fr>
Date: Mon, 30 Mar 2020 08:38:30 +0200
Subject: [PATCH] reformat and remove unneeded import

---
 ippisite/ippidb/admin.py | 2 +-
 ippisite/ippidb/tasks.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ippisite/ippidb/admin.py b/ippisite/ippidb/admin.py
index e0c6126a..10ced876 100644
--- a/ippisite/ippidb/admin.py
+++ b/ippisite/ippidb/admin.py
@@ -29,7 +29,7 @@ from .models import (
     Contribution,
     Job,
 )
-from .tasks import launch_validate_contributions, launch_plots_computing
+from .tasks import launch_validate_contributions
 
 
 class ViewOnSiteModelAdmin(admin.ModelAdmin):
diff --git a/ippisite/ippidb/tasks.py b/ippisite/ippidb/tasks.py
index 5231eb4f..9229c2c5 100644
--- a/ippisite/ippidb/tasks.py
+++ b/ippisite/ippidb/tasks.py
@@ -405,4 +405,4 @@ def launch_plots_computing(self):
     This task will perform the computing of LE-LLE and PCA plots.
     """
     workflow = chain(run_le_lle_plot.si(), run_pca_plot.si())
-    workflow.delay()
\ No newline at end of file
+    workflow.delay()
-- 
GitLab