Skip to content

Commit e7ec25f

Browse files
authored
docs: Fixed some highlighting + a misplaced page (#13)
Co-authored-by: Ethan Mann <[email protected]>
1 parent ca17418 commit e7ec25f

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

docs/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Next up is a [YAMLSource]. Commonly we use this to store local config when devel
6767
### Overriding
6868
In 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

mkdocs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ nav:
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

2831
markdown_extensions:
2932
- toc:

mypy.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
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]
98
ignore_missing_imports = True

0 commit comments

Comments
 (0)