From e6d69705dc442a659a0a61cd259dc1647fb63ee4 Mon Sep 17 00:00:00 2001 From: Dominik Brunmeir Date: Tue, 26 Jul 2022 14:43:57 +0200 Subject: [PATCH] fix indentation --- Environment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Environment.py b/Environment.py index b05ce0b..17c08f3 100644 --- a/Environment.py +++ b/Environment.py @@ -83,7 +83,7 @@ class Env: ''' Get shortest calcualted path and print it ''' - def print_shortest_path(self, Q: dict): -> None + def print_shortest_path(self, Q: dict) -> None: path = [self.start] state = self.start while state!=self.goal: @@ -101,7 +101,7 @@ class Env: ''' Plot graph ''' - def plot_graph(self, path: list): -> None + def plot_graph(self, path: list) -> None: node_color = [] edge_color = [] edge_width = []