Skip to content

Commit 83c2d40

Browse files
committed
Address PR feedback
1 parent 15bb9cd commit 83c2d40

File tree

22 files changed

+485
-383
lines changed

22 files changed

+485
-383
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ docs/clients/
1111
.venv
1212
venv
1313

14-
# Python bytecode cache
14+
# Caches
1515
__pycache__/
16+
.ruff_cache/
1617

1718
# Dependency lock file for uv
1819
uv.lock

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ docs: docs-generate
2222

2323
docs-serve:
2424
@[ -d site ] || $(MAKE) docs
25-
uv run python -m http.server $(DOCS_PORT) --bind 127.0.0.1 --directory site
25+
uv run python -m http.server $(DOCS_PORT) --bind 127.0.0.1 --directory site

clients/aws-sdk-bedrock-runtime/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ docs: docs-generate
2222

2323
docs-serve:
2424
@[ -d site ] || $(MAKE) docs
25-
uv run python -m http.server $(DOCS_PORT) --bind 127.0.0.1 --directory site
25+
uv run python -m http.server $(DOCS_PORT) --bind 127.0.0.1 --directory site

clients/aws-sdk-bedrock-runtime/mkdocs.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -44,34 +44,34 @@ theme:
4444
- content.code.copy
4545

4646
plugins:
47-
- search
48-
- mkdocstrings:
49-
handlers:
50-
python:
51-
options:
52-
show_source: false
53-
show_signature: true
54-
show_signature_annotations: true
55-
show_root_heading: true
56-
show_root_full_path: false
57-
show_object_full_path: false
58-
show_symbol_type_heading: true
59-
show_symbol_type_toc: true
60-
show_if_no_docstring: true
61-
show_category_heading: true
62-
group_by_category: true
63-
separate_signature: true
64-
signature_crossrefs: true
65-
filters:
66-
- "!^_"
67-
- "!^deserialize"
68-
- "!^serialize"
47+
- search
48+
- mkdocstrings:
49+
handlers:
50+
python:
51+
options:
52+
show_source: false
53+
show_signature: true
54+
show_signature_annotations: true
55+
show_root_heading: true
56+
show_root_full_path: false
57+
show_object_full_path: false
58+
show_symbol_type_heading: true
59+
show_symbol_type_toc: true
60+
show_if_no_docstring: true
61+
show_category_heading: true
62+
group_by_category: true
63+
separate_signature: true
64+
signature_crossrefs: true
65+
filters:
66+
- "!^_"
67+
- "!^deserialize"
68+
- "!^serialize"
6969

7070
markdown_extensions:
7171
- pymdownx.highlight
7272
- pymdownx.inlinehilite
7373
- pymdownx.snippets:
74-
check_paths: true
74+
check_paths: true
7575
- pymdownx.superfences
7676
- admonition
7777
- def_list

clients/aws-sdk-bedrock-runtime/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ test = [
3535
]
3636

3737
docs = [
38-
"mkdocs~=1.6.1",
38+
"mkdocs==1.6.1",
3939
"mkdocs-material==9.7.0",
4040
"mkdocstrings[python]==1.0.0"
4141
]

0 commit comments

Comments
 (0)