File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed
Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Next up is a [YAMLSource]. Commonly we use this to store local config when devel
6767### Overriding
6868In this case, we're also allowing users to provide an "override" param which we will load last. This pattern makes
6969 testing and loading config for CLIs much easier.
70- ``` python hl_lines="15 26 30 31 "
70+ ``` python hl_lines="41 48 49 53 58 59 "
7171{!./ config.py!}
7272```
7373
Original file line number Diff line number Diff line change 1919 - Tutorial : ' tutorial.md'
2020 - Changelog : ' CHANGELOG.md'
2121 - API :
22- FlexConfig : ConfigSources/flex_config.md
22+ construct_config : construct_config.md
23+ - " Config Sources " :
2324 ConfigSource : ConfigSources/config_source.md
2425 EnvSource : ConfigSources/env_source.md
25- YAMLSource : ConfigSources/yaml_source.md
2626 AWSSource : ConfigSources/aws_source.md
27+ JSONSource : ConfigSources/FileSources/json_source.md
28+ TOMLSource : ConfigSources/FileSources/toml_source.md
29+ YAMLSource : ConfigSources/FileSources/yaml_source.md
2730
2831markdown_extensions :
2932 - toc :
Original file line number Diff line number Diff line change 11[mypy]
2- disallow_any_generics = True
3- disallow_untyped_defs = True
4- warn_redundant_casts = True
5- warn_unused_ignores = True
6- strict_equality = True
2+ implicit_reexport = True
3+ disallow_untyped_calls = False
4+ warn_return_any = False
5+ strict = True
76
87[mypy-boto3]
98ignore_missing_imports = True
You can’t perform that action at this time.
0 commit comments