Skip to content

Commit d65f4da

Browse files
committed
Remove no longer needed type: ignore comment
1 parent d738e58 commit d65f4da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

repology/parsers/parsers/luarocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def _parse_data(data: str) -> dict[str, Any]:
3838

3939
# mypy: Call to untyped function "Empty" in typed context
4040
# srsly? why only Empty, why not other pyparsing classes? how can I fix it?
41-
table = lcur + (dict_table | array_table | Empty().setParseAction(lambda s, l, t: [None])) + rcur # type: ignore
41+
table = lcur + (dict_table | array_table | Empty().setParseAction(lambda s, l, t: [None])) + rcur
4242
value << (qstring | table)
4343

4444
root = ZeroOrMore(keyval).setParseAction(lambda s, l, t: {k: v for k, v in t})

0 commit comments

Comments
 (0)