Issue #19513: Simplify list_repr()
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 5e40667..50538e1 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -359,14 +359,8 @@
 
     _PyUnicodeWriter_Init(&writer);
     writer.overallocate = 1;
-    if (Py_SIZE(v) > 1) {
-        /* "[" + "1" + ", 2" * (len - 1) + "]" */
-        writer.min_length = 1 + 1 + (2 + 1) * (Py_SIZE(v) - 1) + 1;
-    }
-    else {
-        /* "[1]" */
-        writer.min_length = 3;
-    }
+    /* "[" + "1" + ", 2" * (len - 1) + "]" */
+    writer.min_length = 1 + 1 + (2 + 1) * (Py_SIZE(v) - 1) + 1;
 
     if (_PyUnicodeWriter_WriteChar(&writer, '[') < 0)
         goto error;