summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-06-23 14:31:52 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-06-23 14:31:52 +1000
commitf82677c9609929a12d9bb25d9ab200718accb1c0 (patch)
treee17cb02ea6ee78fb47b67790cac1e8fa8020c501
parent55314023692cd2c15ef4276d057cbf01072b3c29 (diff)
General: Simplify file read.
-rwxr-xr-xwal9
1 files changed, 2 insertions, 7 deletions
diff --git a/wal b/wal
index b27eba0..8e34683 100755
--- a/wal
+++ b/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):