mirror of
https://github.com/maoakeEnterprise/amazing.git
synced 2026-04-28 16:04:35 +02:00
changing the import for mypy test
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@ from typing import Generator
|
||||
from typing_extensions import Self
|
||||
from pydantic import BaseModel, Field, model_validator, ConfigDict
|
||||
|
||||
from .mazegen import Maze, MazeGenerator, MazeSolver
|
||||
from mazegen import Maze, MazeGenerator, MazeSolver
|
||||
|
||||
|
||||
class AMazeIng(BaseModel):
|
||||
|
||||
@@ -2,7 +2,7 @@ from abc import ABC, abstractmethod
|
||||
from typing import Generator, Any
|
||||
import numpy as np
|
||||
from numpy.typing import NDArray
|
||||
from mazegen import Cell
|
||||
from mazegen.Cell import Cell
|
||||
import math
|
||||
import random
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from ..mazegen import DepthFirstSearch, Kruskal
|
||||
from ..mazegen import AStar, DepthFirstSearchSolver
|
||||
from mazegen import DepthFirstSearch, Kruskal
|
||||
from mazegen import AStar, DepthFirstSearchSolver
|
||||
from typing import Any
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user