Skip to content

Commit 2e3853b

Browse files
author
Kevin Hannegan
committed
fix color_params
1 parent c0e3917 commit 2e3853b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

presalytics/lib/themes/ooxml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_configuration(self):
5353
}
5454
color_params = {k: v for k, v in colors.items() if k not in extra_params}
5555
color_params.update(mapped_colors)
56-
params = {k: v[2:] for k, v in color_params.items()}
56+
params = {k: v for k, v in color_params.items() if k not in extra_params}
5757
params.update(fonts)
5858

5959
self.plugin_config = params

0 commit comments

Comments
 (0)