Skip to content

Commit ae6e3d5

Browse files
committed
fix: moves to using mkdocs-typer2
see https://syn54x.github.io/mkdocs-typer2/
1 parent 44d6da1 commit ae6e3d5

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

docs/docs/cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ We follow a `git` like `command`, `sub-command` pattern, so it should feel quite
88

99
uv will install the alias `gal` for you to interact with the CLI. You can ask for help with:
1010

11-
::: mkdocs-typer
11+
::: mkdocs-typer2
1212
:module: gallagher.cli
13-
:command: app
13+
:name: app
1414

1515
## Resources
1616

docs/mkdocs.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ theme:
1010
name: material
1111

1212
markdown_extensions:
13-
- mkdocs-typer
14-
- codehilite
15-
- pymdownx.highlight:
16-
anchor_linenums: true
17-
line_spans: __span
18-
pygments_lang_class: true
19-
- pymdownx.inlinehilite
20-
- pymdownx.snippets
21-
- pymdownx.superfences
22-
- admonition
13+
- codehilite
14+
- pymdownx.highlight:
15+
anchor_linenums: true
16+
line_spans: __span
17+
pygments_lang_class: true
18+
- pymdownx.inlinehilite
19+
- pymdownx.snippets
20+
- pymdownx.superfences
21+
- admonition
2322

24-
plugins:
23+
plugins:
2524
- social
2625
- search
2726
- mkdocstrings
27+
- mkdocs-typer2
2828

2929
nav:
3030
- Introduction: index.md
3131
- Installation & Usage: installation.md
3232
- Python SDK: python-sdk.md
3333
- SQL and SQLAlchemy: sql.md
3434
- Command Line Interface: cli.md
35-
- Terminal User Interface: tui.md
35+
- Terminal User Interface: tui.md
3636
- Contributor's Manual: design.md

gallagher/cc/cardholders/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
33
"""
44

5-
from ..core import Capabilities, APIEndpoint, EndpointConfig
5+
from ..core import (
6+
Capabilities,
7+
APIEndpoint,
8+
EndpointConfig,
9+
)
610

711
from ...dto.detail import (
812
CardholderDetail,

0 commit comments

Comments
 (0)