From c4416caa12accdb9f6e9a2ced7f0bed3e7bdf6d3 Mon Sep 17 00:00:00 2001 From: shaikh-ma Date: Sun, 26 Apr 2026 00:20:14 +0530 Subject: [PATCH] fixes issue-1127 --- 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.")