Skip to content

Commit

Permalink
typing: Remove unused ignore
Browse files Browse the repository at this point in the history
[1] was merged.

[1] python/typeshed#11719

Signed-off-by: Stephen Finucane <stephen@that.guru>
  • Loading branch information
stephenfin committed May 14, 2024
1 parent fa8d22d commit 7cbceba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx_click/ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def nested(argument: ty.Optional[str]) -> NestedT:
if argument not in values:
raise ValueError(
"%s is not a valid value for ':nested:'; allowed values: %s"
% directives.format_values(values) # type: ignore
% directives.format_values(values)
)

return ty.cast(NestedT, argument)
Expand Down

0 comments on commit 7cbceba

Please sign in to comment.