@ -28,7 +28,7 @@ def preprocess_file(path):
with open(path) as f:
content = f.readlines()
content = [x.strip() for x in content]
content = [x.strip('\n') for x in content]
lines=len(content)
for l in content: