From f6dc70e80570d646d01bdf1228c217d3b22a457f Mon Sep 17 00:00:00 2001 From: EREPPLab <60016577+EREPPLab@users.noreply.github.com> Date: Tue, 3 Nov 2020 16:49:49 -0500 Subject: [PATCH] Fixed variable name --- src/attributes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/attributes.py b/src/attributes.py index ba7b3c1..6d84dba 100644 --- a/src/attributes.py +++ b/src/attributes.py @@ -60,7 +60,7 @@ class Attributes: termination_impl = Termination_Methods.fitness_and_generation_based, database = None, database_name = 'database.db', - 'sql_create_data_structure' = """ CREATE TABLE IF NOT EXISTS data ( + sql_create_data_structure = """CREATE TABLE IF NOT EXISTS data ( id integer PRIMARY KEY, generation integer NOT NULL, fitness DOUBLE,