Skip to content

Commit

Permalink
add __all__ to models.__init__
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengp0 committed Dec 26, 2024
1 parent 1ec6290 commit 78cf530
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/regmod/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,20 @@
from .poisson import CanonicalPoissonModel, PoissonModel, create_poisson_model
from .tobit import TobitModel
from .weibull import WeibullModel

__all__ = [
"BinomialModel",
"CanonicalBinomialModel",
"create_binomial_model",
"CanonicalGaussianModel",
"GaussianModel",
"create_gaussian_model",
"Model",
"NegativeBinomialModel",
"PogitModel",
"CanonicalPoissonModel",
"PoissonModel",
"create_poisson_model",
"TobitModel",
"WeibullModel",
]

0 comments on commit 78cf530

Please sign in to comment.