From 43ea2de7bf9727af7f3db83bffcba6434c1565a6 Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Thu, 26 Apr 2018 15:02:06 +0200 Subject: [PATCH] [algorithms][models] code cleanup --- beat/web/algorithms/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beat/web/algorithms/models.py b/beat/web/algorithms/models.py index 2b7d0969a..3b74c9df0 100755 --- a/beat/web/algorithms/models.py +++ b/beat/web/algorithms/models.py @@ -316,7 +316,7 @@ class Algorithm(Code): def all_needed_dataformats(self): result = self.all_referenced_dataformats() - for dataformat in list(result): + for dataformat in result: result.extend(dataformat.all_needed_dataformats()) return list(set(result)) -- GitLab