Skip to content

Commit e34be66

Browse files
renovate-botsisp
andauthored
build(deps): update dependency mypy to v1.19.1
Co-authored-by: Sigurd Spieckermann <[email protected]>
1 parent 5f85984 commit e34be66

File tree

3 files changed

+112
-38
lines changed

3 files changed

+112
-38
lines changed

copier/_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def __init__(self, executable: PathLike[str]) -> None:
163163
help="Skip template tasks execution",
164164
)
165165

166-
@cli.switch( # type: ignore[misc]
166+
@cli.switch( # type: ignore[untyped-decorator]
167167
["-d", "--data"],
168168
str,
169169
"VARIABLE=VALUE",
@@ -181,7 +181,7 @@ def data_switch(self, values: Iterable[str]) -> None:
181181
key, value = arg.split("=", 1)
182182
self.data[key] = value
183183

184-
@cli.switch( # type: ignore[misc]
184+
@cli.switch( # type: ignore[untyped-decorator]
185185
["--data-file"],
186186
cli.ExistingFile,
187187
help="Load data from a YAML file",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ copier = "copier.__main__:CopierApp.run"
4646
dev = [
4747
"codespell[toml]==2.4.1",
4848
"commitizen==4.12.0",
49-
"mypy==1.18.2",
49+
"mypy==1.19.1",
5050
"pexpect==4.9.0",
5151
"poethepoet==0.40.0",
5252
"pre-commit==4.5.1",

0 commit comments

Comments
 (0)