From 6cde000ea033e060fda5034a781c419988ea39a3 Mon Sep 17 00:00:00 2001 From: queue-miscreant Date: Sat, 19 Jul 2025 19:54:36 -0500 Subject: [PATCH] undo bad padding --- posts/permutations/2/graph_data/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/permutations/2/graph_data/base.py b/posts/permutations/2/graph_data/base.py index d08e1d1..9a4a3af 100644 --- a/posts/permutations/2/graph_data/base.py +++ b/posts/permutations/2/graph_data/base.py @@ -12,12 +12,12 @@ def display_integral_root( + ("\\pm" if root != 0 else "") + str(root) + ")^{" + + str(multiplicity) # pad multiplicity + (("\\phantom{" + ("0" * (pad_to - len(str(multiplicity))) + "}")) if pad_to is not None and len(str(multiplicity)) < pad_to else "" ) - + str(multiplicity) + "}" )