From 8e19be94439cb10197eab3821dea12bf139c14a7 Mon Sep 17 00:00:00 2001 From: James Downie Date: Tue, 15 Jul 2025 16:09:50 +1000 Subject: [PATCH] Lazy commit on frankie. --- jdownie/repo/repo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jdownie/repo/repo b/jdownie/repo/repo index 2165e10..9d4e0a0 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -53,9 +53,9 @@ def indicators(props, ind = "tl"): status_digit = "#" if props["n"] > 9 else str(props["n"] % 10) status_indicator = f"{to_keycap(status_digit)}{unstaged}" push_digit = "?" - push_indicator = " " + push_indicator = f" {up_keycap}" pull_digit = "?" - pull_indicator = " " + pull_indicator = f" {down_keycap}" if "ab" in props.keys(): push_digit = "#" if props["ab"]["push"] > 9 else str(props["ab"]["push"] % 10) push_indicator = f"{to_keycap(push_digit)}{up_keycap}"