Skip to content

Commit bdd9963

Browse files
committed
Resolve Unused blanket type: ignore directive
1 parent 5eddc3b commit bdd9963

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

typer/_click/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None:
921921
def consume_value(
922922
self, ctx: Context, opts: Mapping[str, Any]
923923
) -> tuple[Any, ParameterSource]:
924-
value = opts.get(self.name) # type: ignore
924+
value = opts.get(self.name) # type: ignore # ty: ignore[unused-ignore-comment]
925925
source = ParameterSource.COMMANDLINE
926926

927927
if value is None:

0 commit comments

Comments
 (0)