From ea41322005bd2eafc4d9f22fa06f65b9ec100731 Mon Sep 17 00:00:00 2001 From: Mateusz Russak Date: Fri, 16 Feb 2024 11:43:24 +0100 Subject: [PATCH] chore: added short name for alfred flags --- alfred/ci.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alfred/ci.py b/alfred/ci.py index 753239baf..da5ca0e55 100644 --- a/alfred/ci.py +++ b/alfred/ci.py @@ -4,8 +4,8 @@ @alfred.command("ci", help="continuous integration pipeline") -@alfred.option('--front', help="run for frontend only", is_flag=True, default=False) -@alfred.option('--back', help="run for backend only", is_flag=True, default=False) +@alfred.option('--front', '-f', help="run for frontend only", is_flag=True, default=False) +@alfred.option('--back', '-b', help="run for backend only", is_flag=True, default=False) def ci(front, back): if back or (not front and not back): alfred.invoke_command("ci.mypy")