rename orchestrator method start_polling to run_repl

This commit is contained in:
2026-02-10 14:03:37 +03:00
parent 6ed1d35e8a
commit de6d35205c
23 changed files with 79 additions and 81 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ class Orchestrator:
if self._arg_parser is not None:
self._arg_parser._parse_args()
def start_polling(self, app: App) -> None:
def run_repl(self, app: App) -> None:
"""
Public. Starting the user input processing cycle
:param app: a running application
@@ -41,4 +41,4 @@ class Orchestrator:
)
setup_dishka(app, container, auto_inject=self._auto_inject_handlers)
app._run_polling()
app._run_repl()