Skip to content
Snippets Groups Projects
Commit f702860a authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Minor cosmetics

parent 8bd0d0f5
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ import sys ...@@ -11,7 +11,7 @@ import sys
def read_stripped_lines(filename): def read_stripped_lines(filename):
"""Return a list of stripped lines from a file""" """Return a list of stripped lines from a file"""
with open(filename) as fobj: with open(filename) as fobj:
return [l.strip() for l in fobj.readlines()] return [line.strip() for line in fobj.readlines()]
try: try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment