From 9311411e15bb42460480179a63c7a8052a4645c4 Mon Sep 17 00:00:00 2001 From: George Lacey 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