From ab7977746a34e8c83ae360bc333da585a37c6190 Mon Sep 17 00:00:00 2001 From: David Doty Date: Thu, 23 Jul 2020 17:22:52 -0700 Subject: [PATCH] removed print statement from setup.py --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 085722ab..694927ad 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,6 @@ def extract_version(filename: str): with open(filename) as f: lines = f.readlines() version_comment = '# version line; WARNING: do not remove or change this line or comment' - newline = '\n' - print(f'lines 59-65 {newline.join(lines[59:66])}') for line in lines: if version_comment in line: idx = line.index(version_comment)