From 9b4aa11f09690272f28d8156a6420767888a4950 Mon Sep 17 00:00:00 2001 From: Jaywang1013 Date: Wed, 29 Apr 2026 17:55:51 +0800 Subject: [PATCH] Fix percent 40 pattern enum name --- src/pptx/enum/dml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pptx/enum/dml.py b/src/pptx/enum/dml.py index 40d5c5cdf..46c4eca92 100644 --- a/src/pptx/enum/dml.py +++ b/src/pptx/enum/dml.py @@ -250,7 +250,7 @@ class MSO_PATTERN_TYPE(BaseXmlEnum): PERCENT_30 = (5, "pct30", "30% of the foreground color.") """30% of the foreground color.""" - ERCENT_40 = (6, "pct40", "40% of the foreground color.") + PERCENT_40 = (6, "pct40", "40% of the foreground color.") """40% of the foreground color.""" PERCENT_5 = (1, "pct5", "5% of the foreground color.")