Skip to content

Commit 9af3bfb

Browse files
committed
replace NotImplementedError with pass
1 parent d27aa89 commit 9af3bfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

causalpy/experiments/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ def plot(self, *args, **kwargs) -> tuple:
7373
@abstractmethod
7474
def _bayesian_plot(self, *args, **kwargs):
7575
"""Abstract method for plotting the model."""
76-
raise NotImplementedError("_bayesian_plot method not yet implemented")
76+
pass
7777

7878
@abstractmethod
7979
def _ols_plot(self, *args, **kwargs):
8080
"""Abstract method for plotting the model."""
81-
raise NotImplementedError("_ols_plot method not yet implemented")
81+
pass
8282

8383
def get_plot_data(self, *args, **kwargs) -> pd.DataFrame:
8484
"""Recover the data of a PrePostFit experiment along with the prediction and causal impact information.

0 commit comments

Comments
 (0)