Skip to content

Commit

Permalink
Re-added __init__ of wrappers, and congregated stencils import in top…
Browse files Browse the repository at this point in the history
… level __init__
  • Loading branch information
fmalatino committed Mar 19, 2024
1 parent f3dded4 commit 83a05ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pyFV3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from ._config import DynamicalCoreConfig
from .dycore_state import DycoreState
from .stencils.fv_dynamics import DynamicalCore
from .stencils.fv_subgridz import DryConvectiveAdjustment
from .wrappers.geos_wrapper import GeosDycoreWrapper

# from .stencils.fv_dynamics import DynamicalCore
# from .stencils.fv_subgridz import DryConvectiveAdjustment
from .stencils import DryConvectiveAdjustment, DynamicalCore
from .wrappers import GeosDycoreWrapper


"""
Expand Down
1 change: 1 addition & 0 deletions pyFV3/wrappers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .geos_wrapper import GeosDycoreWrapper, MemorySpace, StencilBackendCompilerOverride

0 comments on commit 83a05ca

Please sign in to comment.