Fix this type annotation

This commit is contained in:
Eryn Wells 2022-05-03 18:24:14 -07:00
parent 50d6550e17
commit 7ba33cc6eb

View file

@ -60,7 +60,7 @@ class RoomsAndCorridorsGenerator(MapGenerator):
self.rng: tcod.random.Random = tcod.random.Random()
self.rooms: List['RectanularRoom'] = []
self.rooms: List['RectangularRoom'] = []
self.tiles: Optional[np.ndarray] = None
def generate(self) -> np.ndarray: