From 55503fbc6030752de8d38122ad7ba7375a7731e9 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 2 Jan 2018 12:03:28 +1100 Subject: [PATCH] util: Cleanup --- pywal/util.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pywal/util.py b/pywal/util.py index 28048ba..b8ff682 100644 --- a/pywal/util.py +++ b/pywal/util.py @@ -41,24 +41,20 @@ class Color: def read_file(input_file): """Read data from a file and trim newlines.""" with open(input_file, "r") as file: - data = file.read().splitlines() - return data + return file.read().splitlines() def read_file_json(input_file): """Read data from a json file.""" with open(input_file, "r") as json_file: - data = json.load(json_file) - - return data + return json.load(json_file) def read_file_raw(input_file): """Read data from a file as is, don't strip newlines or other special characters..""" with open(input_file, "r") as file: - data = file.readlines() - return data + return file.readlines() def save_file(data, export_file):