Cleaned an error in interfaces.py
This commit is contained in:
parent
6c675fbac9
commit
230a7ec432
|
@ -37,11 +37,9 @@ class Map:
|
||||||
width = len(lines[0])
|
width = len(lines[0])
|
||||||
tiles = [[Tile(c)
|
tiles = [[Tile(c)
|
||||||
for x, c in enumerate(line)] for y, line in enumerate(lines)]
|
for x, c in enumerate(line)] for y, line in enumerate(lines)]
|
||||||
<<<<<<< HEAD
|
|
||||||
return Map(width, height, tiles)
|
|
||||||
=======
|
|
||||||
return Map(width, height, tiles, [])
|
return Map(width, height, tiles, [])
|
||||||
>>>>>>> master
|
|
||||||
|
|
||||||
def draw_string(self) -> str:
|
def draw_string(self) -> str:
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue