Skip to content

Commit

Permalink
Add module docstrings to uwtools.api.*
Browse files Browse the repository at this point in the history
  • Loading branch information
maddenp committed Feb 15, 2024
1 parent 393b4f7 commit 04fab2d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/uwtools/api/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
API access to uwtools configuration management tools.
"""
import os
from pathlib import Path
from typing import List, Optional, Union
Expand Down
3 changes: 3 additions & 0 deletions src/uwtools/api/fv3.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
API access to the uwtools FV3 driver.
"""
import datetime as dt
from pathlib import Path
from typing import Dict
Expand Down
3 changes: 3 additions & 0 deletions src/uwtools/api/logging.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
API access to uwtools logging logic.
"""
import logging

from uwtools.logging import setup_logging as _setup_logging
Expand Down
3 changes: 3 additions & 0 deletions src/uwtools/api/rocoto.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
API access to uwtools Rocoto support.
"""
from pathlib import Path
from typing import Optional, Union

Expand Down
3 changes: 3 additions & 0 deletions src/uwtools/api/sfc_climo_gen.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
API access to the uwtools sfc_climo_gen driver.
"""
from pathlib import Path
from typing import Dict

Expand Down
3 changes: 3 additions & 0 deletions src/uwtools/api/template.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
API access to uwtools templating logic.
"""
from pathlib import Path
from typing import Dict, Optional, Union

Expand Down

0 comments on commit 04fab2d

Please sign in to comment.