From 285ea39fa9663d1d30835a7bbdd98b3832495a76 Mon Sep 17 00:00:00 2001 From: kolo Date: Thu, 15 Jan 2026 16:59:57 +0300 Subject: [PATCH] ruff wtf --- src/argenta/app/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/argenta/app/models.py b/src/argenta/app/models.py index f74d514..2bf37f8 100644 --- a/src/argenta/app/models.py +++ b/src/argenta/app/models.py @@ -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