232
253
need to coerce the config values:
234
255
Integers: any value that is only made up of numbers, optionally
235
prefixed with +/- is cast as an int: 0, 2001, -55, +404 100.
256
prefixed with +/- is cast as an int: 0, 2001, -55, +404, 100.
237
258
True, False, or None: any value that matches the boolean and None
238
259
keywords is treated as the prescribed type. The match is
239
case-insensative: none, nOne, true, and False are all matched.
260
case-insensitive: none, nOne, true, and False are all matched.
241
262
Strings: any value that is not an int, bool, or None is treated as
242
263
a str. Multi-line strings can be included by indenting the