From 4f5b73fc3e44a4b828cdd247c8a5881c26ecbf47 Mon Sep 17 00:00:00 2001 From: Kenzo-Hugo Hillion <kenzo-hugo.hillion1@pasteur.fr> Date: Tue, 10 Dec 2019 10:55:36 +0100 Subject: [PATCH] fix flake8 --- backend/metagenedb/common/utils/parsers/test_eggnog.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/metagenedb/common/utils/parsers/test_eggnog.py b/backend/metagenedb/common/utils/parsers/test_eggnog.py index 3dce9a6..965fede 100644 --- a/backend/metagenedb/common/utils/parsers/test_eggnog.py +++ b/backend/metagenedb/common/utils/parsers/test_eggnog.py @@ -10,8 +10,7 @@ class TestEggNogAnnotationLineParser(TestCase): expected_dict = { 'function_id': "28H54", 'name': "translational termination", - ' - functional_category': "K" + 'functional_category': "K" } test_dict = EggNogAnnotationLineParser.get_dict(ko_line) self.assertDictEqual(test_dict, expected_dict) -- GitLab