Skip to content

Commit

Permalink
DOC: don't inherit docstring of shap Explainer.__init__ in BaseExplainer
Browse files Browse the repository at this point in the history
  • Loading branch information
j-ittner committed May 16, 2023
1 parent 1fd3894 commit 684b75d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/facet/explanation/base/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ class BaseExplainer(
an :class:`ExplainerFactory` object.
"""

def __init__(self, *args: Any, **kwargs: Any):
"""
:param args: positional arguments passed to the explainer constructor
:param kwargs: keyword arguments passed to the explainer constructor
"""
super().__init__(*args, **kwargs)

@property
@abstractmethod
def supports_interaction(self) -> bool:
Expand Down

0 comments on commit 684b75d

Please sign in to comment.