Skip to content

Commit

Permalink
Remove unused type:ignore annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
n-peugnet committed Apr 8, 2024
1 parent 0794348 commit 358c611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def parse_inline(self, inputstring: str, document: nodes.document) -> None:
if has_literal:
inputstring = inputstring[:-2]

self.setup_parse(inputstring, document) # type: ignore[arg-type]
self.setup_parse(inputstring, document)
self.statemachine = states.RSTStateMachine(
state_classes=self.state_classes,
initial_state='Text',
Expand Down

0 comments on commit 358c611

Please sign in to comment.