fix indentation
This commit is contained in:
		@@ -84,7 +84,7 @@ class Env:
 | 
				
			|||||||
        Get shortest calcualted path and print it
 | 
					        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]
 | 
					        path = [self.start]
 | 
				
			||||||
        state = self.start
 | 
					        state = self.start
 | 
				
			||||||
        while state!=self.goal:
 | 
					        while state!=self.goal:
 | 
				
			||||||
@@ -103,7 +103,7 @@ class Env:
 | 
				
			|||||||
        Plot graph
 | 
					        Plot graph
 | 
				
			||||||
    '''
 | 
					    '''
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    def plot_graph(self, path: list): -> None
 | 
					    def plot_graph(self, path: list) -> None:
 | 
				
			||||||
        node_color = []
 | 
					        node_color = []
 | 
				
			||||||
        edge_color = []
 | 
					        edge_color = []
 | 
				
			||||||
        edge_width = []
 | 
					        edge_width = []
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user