finish the mypy

This commit is contained in:
Maoake Teriierooiterai
2026-04-01 16:09:42 +02:00
parent c9e0cf0610
commit b659871902
5 changed files with 21 additions and 23 deletions
+3 -1
View File
@@ -15,7 +15,9 @@ def test_maze_setter_getter() -> None:
)
maze.set_maze(test)
assert numpy.array_equal(maze.get_maze(), test) is True
m = maze.get_maze()
assert m is not None
assert numpy.array_equal(m, test) is True
def test_maze_str() -> None: