File tree 3 files changed +10
-8
lines changed 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
67
67
### Overriding
68
68
In this case, we're also allowing users to provide an "override" param which we will load last. This pattern makes
69
69
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 "
71
71
{!./ config.py!}
72
72
```
73
73
Original file line number Diff line number Diff line change 19
19
- Tutorial : ' tutorial.md'
20
20
- Changelog : ' CHANGELOG.md'
21
21
- API :
22
- FlexConfig : ConfigSources/flex_config.md
22
+ construct_config : construct_config.md
23
+ - " Config Sources " :
23
24
ConfigSource : ConfigSources/config_source.md
24
25
EnvSource : ConfigSources/env_source.md
25
- YAMLSource : ConfigSources/yaml_source.md
26
26
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
27
30
28
31
markdown_extensions :
29
32
- toc :
Original file line number Diff line number Diff line change 1
1
[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
7
6
8
7
[mypy-boto3]
9
8
ignore_missing_imports = True
You can’t perform that action at this time.
0 commit comments