From 0541173fc8d8a1fc6724325d1fd9eef8f6222ab4 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 09:03:37 +0000 Subject: [PATCH] fix: resolve CI/CD workflow configuration --- shell_alias_gen/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell_alias_gen/cli.py b/shell_alias_gen/cli.py index 63dc66e..5b6d73e 100644 --- a/shell_alias_gen/cli.py +++ b/shell_alias_gen/cli.py @@ -238,7 +238,7 @@ def locations(): console.print() -def _get_parser(shell: str, history_file: Optional[Path]) -> Optional["BaseParser"]: +def _get_parser(shell: str, history_file: Optional[Path]) -> Optional[HistoryParser]: """Get appropriate history parser.""" if shell == 'auto' and history_file: detected = HistoryParserFactory.detect_shell_from_file(str(history_file))