Remove print statement

This commit is contained in:
notplants 2021-03-16 14:37:31 +01:00
parent 1cafc9c4b9
commit 9544954ab7
1 changed files with 0 additions and 1 deletions

View File

@ -15,7 +15,6 @@ def get_version_from_setup_file(file_path):
with open(file_path, 'r') as f:
lines = f.read().splitlines()
for line in lines:
print(line)
match = re.match('.*version = "(\S+)",', line)
if match:
version = match.group(1)