Description
Steps to reproduce
astroid 2.5
pylint 2.6.0
elasticsearch 7.10.1
python 3.7.3
from elasticsearch import Elasticsearch
es = Elasticsearch(["test"])
es.indices.delete(index="test", ignore=[400, 404])
- run pylint
Current behavior
line 3 >>> E1123: Unexpected keyword argument 'ignore' in method call (unexpected-keyword-arg)
Expected behavior
astroid 2.4.2: no error from pylint