changing the import for mypy test

This commit is contained in:
maoake
2026-04-01 23:00:08 +02:00
parent 3e85cbe919
commit 4c1955ace4
5 changed files with 12 additions and 8 deletions
+1 -1
View File
@@ -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):
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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