Skip to content

Commit fba0fab

Browse files
committed
Add docstrings to __init__.py
1 parent 19c20fb commit fba0fab

5 files changed

Lines changed: 6 additions & 0 deletions

File tree

dabench/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
"""DataAssimBench"""
12
from . import data, model, observer, obsop, dacycler, _suppl_data

dabench/dacycler/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""Data Assimilation cyclers"""
2+
13
from ._dacycler import DACycler
24
from ._var3d import Var3D
35
from ._etkf import ETKF

dabench/data/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Data generators and downloaders"""
12
from ._data import Data
23

34
from ._lorenz63 import Lorenz63

dabench/model/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Model classes"""
12
from ._model import Model
23
from ._rc import RCModel
34

dabench/observer/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Observer module"""
12
from ._observer import Observer
23

34
__all__ = [

0 commit comments

Comments
 (0)