Added whitespace

This commit is contained in:
SimpleArt
2020-11-09 15:58:49 -05:00
parent 7a8f16c622
commit ce0d879f82

View File

@ -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"""