diff --git a/dash/development/base_component.py b/dash/development/base_component.py index f12474178f..6058d8b71b 100644 --- a/dash/development/base_component.py +++ b/dash/development/base_component.py @@ -11,7 +11,8 @@ class ComponentRegistry(abc.ABCMeta): """Just importing a component lib will make it be loaded on the index""" component_registry = set() - + + # pylint: disable=arguments-differ def __new__(mcs, name, bases, attributes): component = abc.ABCMeta.__new__(mcs, name, bases, attributes) if name == 'Component':