Linting
This commit is contained in:
		@@ -17,7 +17,7 @@ class CreditsDisplay(Display):
 | 
				
			|||||||
        self.ascii_art_displayed = False
 | 
					        self.ascii_art_displayed = False
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def update(self, game: Game) -> None:
 | 
					    def update(self, game: Game) -> None:
 | 
				
			||||||
        return 
 | 
					        return
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def display(self) -> None:
 | 
					    def display(self) -> None:
 | 
				
			||||||
        self.box.refresh(self.y, self.x, self.height, self.width)
 | 
					        self.box.refresh(self.y, self.x, self.height, self.width)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,7 @@ class LogsDisplay(Display):
 | 
				
			|||||||
    """
 | 
					    """
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    logs: Logs
 | 
					    logs: Logs
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def __init__(self, *args) -> None:
 | 
					    def __init__(self, *args) -> None:
 | 
				
			||||||
        super().__init__(*args)
 | 
					        super().__init__(*args)
 | 
				
			||||||
        self.pad = self.newpad(self.rows, self.cols)
 | 
					        self.pad = self.newpad(self.rows, self.cols)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,7 @@ class MapDisplay(Display):
 | 
				
			|||||||
    """
 | 
					    """
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    map: Map
 | 
					    map: Map
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def __init__(self, *args):
 | 
					    def __init__(self, *args):
 | 
				
			||||||
        super().__init__(*args)
 | 
					        super().__init__(*args)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user