Skip to content

Commit

Permalink
simplified init test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Feb 17, 2021
1 parent 003d486 commit 430ac78
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions prody/hybrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,25 @@

__all__ = []

"""
from . import hybrid
from .hybrid import *
__all__.extend(hybrid.__all__)

"""
from . import clustenm
from .clustenm import *
__all__.extend(clustenm.__all__)

"""
from . import adaptive
from .adaptive import *
__all__.extend(adaptive.__all__)

"""
# workaround for circular dependency to accommodate original design style
from prody.ensemble import functions
"""
functions.Hybrid = Hybrid
"""
functions.ClustENM = ClustENM
"""
functions.AdaptiveHybrid = AdaptiveHybrid
"""

0 comments on commit 430ac78

Please sign in to comment.