(options: t.Mapping[str, str], key: str, default: bool = False)
| 822 | extensions[InternationalizationExtension] = None |
| 823 | |
| 824 | def getbool(options: t.Mapping[str, str], key: str, default: bool = False) -> bool: |
| 825 | return options.get(key, str(default)).lower() in {"1", "on", "yes", "true"} |
| 826 | |
| 827 | silent = getbool(options, "silent", True) |
| 828 | environment = Environment( |