Disable no-self-use [pylint] (#70641)
* Disable no-self-use * Remove disable comments
This commit is contained in:
parent
9dcbc8469e
commit
9b9b553521
49 changed files with 14 additions and 64 deletions
|
@ -417,7 +417,7 @@ class Template:
|
|||
|
||||
return self._parse_result(render_result)
|
||||
|
||||
def _parse_result(self, render_result: str) -> Any: # pylint: disable=no-self-use
|
||||
def _parse_result(self, render_result: str) -> Any:
|
||||
"""Parse the result."""
|
||||
try:
|
||||
result = literal_eval(render_result)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue