Skip to content

Commit

Permalink
Improve docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
maddenp-noaa committed Aug 27, 2024
1 parent 770e649 commit 7ce437a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/uwtools/drivers/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ def rundir(self) -> Path:
@classmethod
def schema(cls) -> dict:
"""
Return the driver's schema.
Return the driver's internal schema.
"""
with open(internal_schema_file(schema_name=cls._schema_name()), "r", encoding="utf-8") as f:
return bundle(json.load(f))

def taskname(self, suffix: str) -> str:
"""
Return a common tag for graph-task log messages.
Return a common tag for task-related log messages.
:param suffix: Log-string suffix.
"""
Expand Down

0 comments on commit 7ce437a

Please sign in to comment.