Skip to content

Commit

Permalink
- expose base layer
Browse files Browse the repository at this point in the history
 - make individual thinlayers optional
  • Loading branch information
fbergmann committed Jan 20, 2022
1 parent aab84a3 commit d6cc9bc
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions pyenzyme/thinlayers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
from .TL_Pysces import ThinLayerPysces
from .TL_Copasi import ThinLayerCopasi
from .TL_Strenda import ThinLayerStrendaML
from .TL_Base import BaseThinLayer

try:
from .TL_Pysces import ThinLayerPysces
except ModuleNotFoundError:
ThinLayerPysces = None

try:
from .TL_Copasi import ThinLayerCopasi
except ModuleNotFoundError:
ThinLayerCopasi = None

try:
from .TL_Strenda import ThinLayerStrendaML
except ModuleNotFoundError:
ThinLayerStrendaML = None

0 comments on commit d6cc9bc

Please sign in to comment.