We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96b0e4c commit 8a15cf8Copy full SHA for 8a15cf8
docs/cli.md
@@ -40,11 +40,16 @@ Initialize a simple project.
40
**Usage**:
41
42
```console
43
-$ corsair init [OPTIONS]
+$ corsair init [OPTIONS] [KIND]:[json|hjson|yaml]
44
```
45
46
+**Arguments**:
47
+
48
+* `[KIND]:[json|hjson|yaml]`: Template kind. Defines the format of the generated register map file. [default: yaml]
49
50
**Options**:
51
52
+* `-o, --output PATH`: Path to an output directory [default: .]
53
* `--help`: Show this message and exit.
54
55
## `corsair build`
src/corsair/_app/init.py
@@ -6,7 +6,7 @@
6
import logging
7
from enum import Enum
8
from pathlib import Path
9
-from typing import TYPE_CHECKING, Annotated
+from typing import Annotated
10
11
import typer # noqa: TCH002
12
0 commit comments