Skip to content

Commit

Permalink
Appease mypy and pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
whonore committed Jan 4, 2025
1 parent 299d0ac commit 08de648
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ disable=blacklisted-name,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-positional-arguments,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
Expand Down
8 changes: 4 additions & 4 deletions python/xmlInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,9 +798,9 @@ def __init__(
"goal": self._to_goal,
"goals": self._to_goals,
"evar": self._to_evar,
"option_value": self._to_option_value, # type: ignore
"option_value": self._to_option_value,
"option_state": self._to_option_state,
"status": self._to_status, # type: ignore
"status": self._to_status,
"coq_info": self._to_coq_info,
"message": self._to_message,
"feedback": self._to_feedback,
Expand Down Expand Up @@ -1156,10 +1156,10 @@ def __init__(
"goal": self._to_goal,
"goals": self._to_goals,
"evar": self._to_evar,
"option_value": self._to_option_value, # type: ignore
"option_value": self._to_option_value,
"option_state": self._to_option_state,
"state_id": self._to_state_id,
"status": self._to_status, # type: ignore
"status": self._to_status,
"coq_info": self._to_coq_info,
"message": self._to_message,
"feedback": self._to_feedback,
Expand Down

0 comments on commit 08de648

Please sign in to comment.