Skip to content

Commit

Permalink
update init
Browse files Browse the repository at this point in the history
  • Loading branch information
c-w-feldmann committed Apr 23, 2024
1 parent 880f55c commit c9c74cb
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions molpipeline/estimators/chemprop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@

installed_packages = {pkg.name for pkg in pkgutil.iter_modules()}
if "chemprop" in installed_packages:
from molpipeline.estimators.chemprop.models import ChempropModel # noqa
from molpipeline.estimators.chemprop.models import (
ChempropClassifier,
ChempropModel,
ChempropNeuralFP,
ChempropRegressor,
)

__all__ = ["ChempropModel"]
__all__ = [
"ChempropClassifier",
"ChempropModel",
"ChempropNeuralFP",
"ChempropRegressor",
]
else:
__all__ = []

0 comments on commit c9c74cb

Please sign in to comment.