aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/quote_parsing/parse_emails.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/quote_parsing/parse_emails.py b/python/quote_parsing/parse_emails.py
index 9747ddba..a2eefa97 100644
--- a/python/quote_parsing/parse_emails.py
+++ b/python/quote_parsing/parse_emails.py
@@ -683,7 +683,6 @@ def parse_jpm(fh, index_desc):
def parse_gs_eu_block(fh, indextype):
r = []
for line in fh:
- print(line)
line = line.strip()
if line == "":
break
@@ -724,7 +723,6 @@ def parse_gs_eu(fh, index_desc):
pat = re.compile(r"(\w{3}\d{2})")
line = next(fh).strip()
while True:
- print(line)
if ("|" in line) and ("STK" not in line):
if m := pat.match(line):
expiry = m.group(1)