Fixed syntax error in Walker.split
This commit is contained in:
		@@ -44,7 +44,7 @@ class Walker:
 | 
				
			|||||||
        if 0 < nx < width and 0 < ny < height:
 | 
					        if 0 < nx < width and 0 < ny < height:
 | 
				
			||||||
            self.x, self.y = nx, ny
 | 
					            self.x, self.y = nx, ny
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def split():
 | 
					    def split(self):
 | 
				
			||||||
        child = Walker(self.x, self.y)
 | 
					        child = Walker(self.x, self.y)
 | 
				
			||||||
        child.dir = self.dir
 | 
					        child.dir = self.dir
 | 
				
			||||||
        return child
 | 
					        return child
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user