From 021957af2b666d56ddeeea49820c2c9671762e74 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bertrand=20N=C3=A9ron?= <bneron@pasteur.fr>
Date: Tue, 15 Jun 2021 15:25:15 +0200
Subject: [PATCH] remove print debug

---
 source/_static/code/fasta_iterator.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/source/_static/code/fasta_iterator.py b/source/_static/code/fasta_iterator.py
index 2baeb85..993ed85 100644
--- a/source/_static/code/fasta_iterator.py
+++ b/source/_static/code/fasta_iterator.py
@@ -17,7 +17,6 @@ def fasta_iter(fasta_file):
       # we know they alternate.
       group = (x[1] for x in groupby(fasta_file , lambda line: line.startswith(">")))
       for header in group:
-         print header
          # drop the ">"
          header = header.next()[1:].strip()
          header = header.split()
-- 
GitLab