mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-29 11:24:03 +01:00
General: Simplify file read.
This commit is contained in:
parent
5531402369
commit
f82677c960
9
wal
9
wal
@ -524,13 +524,8 @@ def reload_colors(vte):
|
||||
|
||||
|
||||
def read_file(input_file):
|
||||
"""Read colors from a file"""
|
||||
with open(input_file) as file:
|
||||
contents = file.readlines()
|
||||
|
||||
# Strip newlines from each list element.
|
||||
contents = [x.strip() for x in contents]
|
||||
return contents
|
||||
"""Read colors from a file."""
|
||||
return open(input_file).read().splitlines()
|
||||
|
||||
|
||||
def save_file(colors, export_file):
|
||||
|
Loading…
Reference in New Issue
Block a user