From ce0d879f82e4c1fa6bb008ea3ac6a38ad79062d3 Mon Sep 17 00:00:00 2001 From: SimpleArt <71458112+SimpleArt@users.noreply.github.com> Date: Mon, 9 Nov 2020 15:58:49 -0500 Subject: [PATCH] Added whitespace --- src/database/sql_database.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/database/sql_database.py b/src/database/sql_database.py index 968bb80..2992e5a 100644 --- a/src/database/sql_database.py +++ b/src/database/sql_database.py @@ -111,6 +111,7 @@ class SQL_Database: return query_data[0] + def get_generation_total_fitness(self): """Get each generations total fitness sum from the database """ @@ -121,6 +122,7 @@ class SQL_Database: return formated_query_data + def get_total_generations(self): """Get the total generations from the database""" @@ -128,6 +130,7 @@ class SQL_Database: return query_data + def get_highest_chromosome(self): """Get the highest fitness of each generation""" @@ -138,6 +141,7 @@ class SQL_Database: return formated_query_data; + def get_lowest_chromosome(self): """Get the lowest fitness of each generation"""