Skip to content

Commit 8a15cf8

Browse files
committed
fix: fix pre-commit issues
1 parent 96b0e4c commit 8a15cf8

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

docs/cli.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,16 @@ Initialize a simple project.
4040
**Usage**:
4141

4242
```console
43-
$ corsair init [OPTIONS]
43+
$ corsair init [OPTIONS] [KIND]:[json|hjson|yaml]
4444
```
4545

46+
**Arguments**:
47+
48+
* `[KIND]:[json|hjson|yaml]`: Template kind. Defines the format of the generated register map file. [default: yaml]
49+
4650
**Options**:
4751

52+
* `-o, --output PATH`: Path to an output directory [default: .]
4853
* `--help`: Show this message and exit.
4954

5055
## `corsair build`

src/corsair/_app/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import logging
77
from enum import Enum
88
from pathlib import Path
9-
from typing import TYPE_CHECKING, Annotated
9+
from typing import Annotated
1010

1111
import typer # noqa: TCH002
1212

0 commit comments

Comments
 (0)