Skip to content

Commit

Permalink
Fix docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
stefannica committed Nov 13, 2024
1 parent 86c4b09 commit b14d3a1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/zenml/zen_server/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ def memcache() -> MemoryCache:
Returns:
The memory cache.
Raises:
RuntimeError: If the memory cache is not initialized.
"""
if _memcache is None:
raise RuntimeError("Memory cache not initialized")
Expand Down

0 comments on commit b14d3a1

Please sign in to comment.