From c4840025b67e35a893b143cc80fa0879d1ebf369 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bertrand=20N=C3=A9ron?= <bneron@pasteur.fr>
Date: Sun, 14 Sep 2014 08:47:41 +0200
Subject: [PATCH] remove unused variable
---
source/_static/code/fasta_reader.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/source/_static/code/fasta_reader.py b/source/_static/code/fasta_reader.py
index fe4da17..4ef969e 100644
--- a/source/_static/code/fasta_reader.py
+++ b/source/_static/code/fasta_reader.py
@@ -18,7 +18,6 @@ def fasta_reader(fasta_path):
header = line.split()
id_ = header[0]
comment = ' '.join(header[1:])
- in_sequence = True
else:
sequence += line.strip()
return Sequence(id_ , comment, sequence)
\ No newline at end of file
--
GitLab