refactor(resolver): move resolver to checker module

This commit is contained in:
2026-06-08 13:45:39 +02:00
parent e2aef7a811
commit 67ec029529
2 changed files with 1 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ from midas.checker.environment import Environment
from midas.checker.operators import COMPARATOR_METHODS, OPERATOR_METHODS from midas.checker.operators import COMPARATOR_METHODS, OPERATOR_METHODS
from midas.checker.registry import TypesRegistry from midas.checker.registry import TypesRegistry
from midas.checker.reporter import FileReporter, Reporter from midas.checker.reporter import FileReporter, Reporter
from midas.checker.resolver import Resolver
from midas.checker.types import ( from midas.checker.types import (
ComplexType, ComplexType,
Function, Function,
@@ -19,7 +20,6 @@ from midas.checker.types import (
unfold_type, unfold_type,
) )
from midas.parser.python import PythonParser from midas.parser.python import PythonParser
from midas.resolver.resolver import Resolver
class ReturnException(Exception): class ReturnException(Exception):