diff --git a/jdownie/repo/repo b/jdownie/repo/repo index bada39d..68b4b03 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -57,9 +57,9 @@ def indicators(props, ind = "tl"): pull_digit = "?" pull_indicator = f" {down_keycap}" if "ab" in props.keys(): - push_digit = "##" if props["ab"]["push"] > 99 else f"{props["ab"]["push"] % 100:2d}" + push_digit = "##" if props["ab"]["push"] > 99 else f"{props['ab']['push'] % 100:2d}" push_indicator = f"{to_keycap(push_digit)}{up_keycap}" - pull_digit = "##" if props["ab"]["pull"] > 99 else f"{props["ab"]["pull"] % 100:2d}" + pull_digit = "##" if props["ab"]["pull"] > 99 else f"{props['ab']['pull'] % 100:2d}" pull_indicator = f"{to_keycap(pull_digit)}{down_keycap}" ret = "?" if ind == "tl":