Skip to content
Snippets Groups Projects

fontsize options

Merged Lan Dam requested to merge i181_fontsize_options into develop
1 unresolved thread
1 file
+ 4
3
Compare changes
  • Side-by-side
  • Inline
@@ -186,9 +186,10 @@ class ConfigProcessor:
base_plot_font_size = self.config.get(
'MiscOptions', 'base_plot_font_size')
expected_base_plot_font_sizes = set(map(str, range(
constants.MIN_FONTSIZE, constants.MAX_FONTSIZE + 1
)))
expected_base_plot_font_sizes = [
str(i)
for i in range(constants.MIN_FONTSIZE, constants.MAX_FONTSIZE + 1)
]
if base_plot_font_size not in expected_base_plot_font_sizes:
raise BadConfigError(
Loading