Skip to content

Commit a23292b

Browse files
eigenfooaseyboldt
authored andcommitted
REV: remove abc (#42)
1 parent 787eb01 commit a23292b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

bayesalpha/base.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
import json
44
import hashlib
5-
from abc import ABC, abstractmethod
65
import xarray as xr
76

87

9-
class BayesAlphaResult(ABC):
8+
class BayesAlphaResult(object):
109
""" A wrapper around a PyMC3 trace as a xarray Dataset. """
1110

1211
def __init__(self, trace):
@@ -20,7 +19,6 @@ def save(self, filename, group=None, **args):
2019
def _load(cls, trace):
2120
return cls(trace=trace)
2221

23-
@abstractmethod
2422
def rebuild_model(self, **kwargs):
2523
pass
2624

0 commit comments

Comments
 (0)