From d01096c1ea2309f2ea5e326e7179cf1ffbcd917b Mon Sep 17 00:00:00 2001 From: SimpleArt <71458112+SimpleArt@users.noreply.github.com> Date: Thu, 22 Oct 2020 19:07:43 -0400 Subject: [PATCH] Fixed print tabbing --- src/EasyGA.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EasyGA.py b/src/EasyGA.py index 0d8a8a3..fabe187 100644 --- a/src/EasyGA.py +++ b/src/EasyGA.py @@ -123,7 +123,7 @@ class GA(attributes): def print_generation(self): """Prints the current generation""" - print(f"Current Generation: {self.current_generation}") + print(f"Current Generation \t: {self.current_generation}") def print_population(self):