This commit is contained in:
2026-02-07 01:27:03 +03:00
parent c07ee92371
commit 8ff9944d37
+1 -1
View File
@@ -159,7 +159,7 @@ class BaseApp(BehaviorHandlersSettersMixin):
input_command: InputCommand = InputCommand.parse(raw_command=raw_command) input_command: InputCommand = InputCommand.parse(raw_command=raw_command)
except InputCommandException as error: # noqa F841 except InputCommandException as error: # noqa F841
self._viewer.view_framed_text_from_generator( self._viewer.view_framed_text_from_generator(
output_text_generator=lambda: self._error_handler(error, raw_command) output_text_generator=lambda: self._error_handler(error, raw_command) # noqa
) )
continue continue