From acaa2e53a817bbcf6c1fbae8a894b6867c631a48 Mon Sep 17 00:00:00 2001 From: Parthe Pandit Date: Wed, 28 Apr 2021 16:02:55 -0700 Subject: [PATCH] Removed wasteful line from data.py --- data.py | 1 - 1 file changed, 1 deletion(-) diff --git a/data.py b/data.py index fb36652..7401f20 100644 --- a/data.py +++ b/data.py @@ -337,7 +337,6 @@ def _get_data_pairs(params): data_dict = {e: {} for e in endings} for ending in endings: s1 = read_file(join(dataset_path, "s1." + ending), params) - s1 = s1 s2 = read_file(join(dataset_path, "s2." + ending), params) data_dict[ending]["Sx"] = s1 if not params.invert_style else s2 data_dict[ending]["Sy"] = s2 if not params.invert_style else s1