Skip to content

Commit

Permalink
Add type ignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlatr committed Sep 17, 2022
1 parent 9803fef commit 522a64f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydoctor/_configparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def __init__(self, config_parser: ConfigFileParser, argument_parser: ArgumentPar
self.argument_parser = argument_parser

def get_syntax_description(self) -> str:
return self.config_parser.get_syntax_description()
return self.config_parser.get_syntax_description() #type:ignore[no-any-return]

def parse(self, stream:TextIO) -> Dict[str, Any]:
data: Dict[str, Any] = self.config_parser.parse(stream)
Expand Down

0 comments on commit 522a64f

Please sign in to comment.