2
0
Fork 0

fix indentation

This commit is contained in:
Dominik Brunmeir 2022-07-26 14:43:15 +02:00
parent 21d4461ba9
commit 2553413289
1 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,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:
@ -103,7 +103,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 = []