Lazy commit on frankie.

This commit is contained in:
James Downie 2025-07-15 16:09:50 +10:00
parent a86c1b6f70
commit 8e19be9443

View File

@ -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}"