finish the norm

This commit is contained in:
Maoake Teriierooiterai
2026-04-06 18:17:45 +02:00
parent 4d5662c248
commit f5131f0e01
5 changed files with 26 additions and 8 deletions
-1
View File
@@ -1,6 +1,5 @@
from abc import ABC, abstractmethod
from typing import Generator, Any
from mazegen import Maze
import numpy as np
from numpy.typing import NDArray
from mazegen.Cell import Cell
+2 -1
View File
@@ -12,7 +12,8 @@ class DataMaze:
with open(name_file, "r"):
while True:
res = input(
f"{name_file} already exist. Data will be erased. Continue ? (y/n)"
f"{name_file} already exist. Data will"
" be erased. Continue ? (y/n)"
)
if res == "y":
break