This commit is contained in:
2026-01-15 16:59:57 +03:00
parent 30e5fd6ebe
commit 285ea39fa9
+2 -2
View File
@@ -458,9 +458,9 @@ class App(BaseApp):
try:
input_command: InputCommand = InputCommand.parse(raw_command=raw_command)
except InputCommandException as error:
except InputCommandException as error: # noqa F841
stderr_result = self._capture_stdout(
lambda: self._error_handler(error, raw_command)
lambda: self._error_handler(error, raw_command) # noqa F821
)
self._print_framed_text(stderr_result)
continue