From 878c2c857a3bc49b3325685f7874bd1d3f5be9a8 Mon Sep 17 00:00:00 2001 From: George Lacey <490796@hull.ac.uk> Date: Fri, 10 Feb 2017 12:11:46 +0000 Subject: [PATCH] Create Data class --- Data.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Data.py diff --git a/Data.py b/Data.py new file mode 100644 index 0000000..29ff058 --- /dev/null +++ b/Data.py @@ -0,0 +1,6 @@ +class Data(object): + + def __init__(self, p_value1, p_value2, p_target): + self.value1 = p_value1 + self.value2 = p_value2 + self.target = p_target