blob: d2759adfe845de35356fb0ac0881c3c99e6d3535 [file] [log] [blame]
"""Test that `abc.ABCMeta.__new__` does not trigger too-many-function-arguments when referred
https://github.com/PyCQA/pylint/issues/2335
"""
# pylint: disable=missing-class-docstring,unused-argument,arguments-differ
from abc import ABCMeta
class NodeCheckMetaClass(ABCMeta):
def __new__(cls, name, bases, namespace, **kwargs):
return ABCMeta.__new__(cls, name, bases, namespace)