fix typechecker error, chage version in readme and etc

This commit is contained in:
2025-10-13 01:51:38 +03:00
parent 462a8088e9
commit 078cbdc4a8
6 changed files with 8 additions and 7 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
__all__ = ["App", "Orchestrator", "Router"]
from argenta.orchestrator.entity import Orchestrator, App
from argenta.orchestrator.entity import Orchestrator
from argenta.app.models import App
from argenta.router.entity import Router
+1 -1
View File
@@ -1,5 +1,5 @@
from argenta.orchestrator.argparser import ArgParser
from dishka import Provider, provide, Scope # type: ignore
from dishka import Provider, provide, Scope
from argenta.orchestrator.argparser.entity import ArgSpace
+1 -1
View File
@@ -24,5 +24,5 @@ class Response:
self.input_flags: InputFlags = input_flags
@classmethod
def patch_by_container(cls, container: Container):
def patch_by_container(cls, container: Container) -> None:
cls._dishka_container = container
@@ -1,6 +1,5 @@
from collections.abc import Iterator
from typing import Callable
import inspect
from argenta.command import Command
from argenta.response import Response