Skip to content

Commit 3fd642e

Browse files
committed
revert previous change
1 parent 9af3bfb commit 3fd642e

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-
pass
76+
raise NotImplementedError("_bayesian_plot method not yet implemented")
7777

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