We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
untype-decorator
1 parent 4b0f7f4 commit ec79fe2Copy full SHA for ec79fe2
copier/_cli.py
@@ -163,7 +163,7 @@ def __init__(self, executable: PathLike[str]) -> None:
163
help="Skip template tasks execution",
164
)
165
166
- @cli.switch( # type: ignore[misc]
+ @cli.switch( # type: ignore[untyped-decorator]
167
["-d", "--data"],
168
str,
169
"VARIABLE=VALUE",
@@ -181,7 +181,7 @@ def data_switch(self, values: Iterable[str]) -> None:
181
key, value = arg.split("=", 1)
182
self.data[key] = value
183
184
185
["--data-file"],
186
cli.ExistingFile,
187
help="Load data from a YAML file",
0 commit comments