mirror of
https://github.com/maoakeEnterprise/amazing.git
synced 2026-04-28 16:04:35 +02:00
finish the norm
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user