Skip to content

Commit 055ba83

Browse files
committed
added module-level docstrings
1 parent 08a86d0 commit 055ba83

16 files changed

+19
-0
lines changed

src/runloop_api_client/sdk/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Runloop SDK - Object-oriented Python interface for Runloop.
2+
3+
Provides both sync (`RunloopSDK`) and async (`AsyncRunloopSDK`) interfaces.
4+
"""
15
from __future__ import annotations
26

37
from .sync import RunloopSDK, DevboxClient, SnapshotClient, BlueprintClient, StorageObjectClient

src/runloop_api_client/sdk/_helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""SDK helper types and utility functions."""
12
from __future__ import annotations
23

34
import io

src/runloop_api_client/sdk/async_.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Asynchronous SDK entry points and management interfaces."""
12
from __future__ import annotations
23

34
from typing import Dict, Mapping, Iterable, Optional

src/runloop_api_client/sdk/async_blueprint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Blueprint resource class for asynchronous operations."""
12
from __future__ import annotations
23

34
from typing import TYPE_CHECKING, Dict, Iterable, Optional

src/runloop_api_client/sdk/async_devbox.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Asynchronous devbox resource class."""
12
from __future__ import annotations
23

34
import asyncio

src/runloop_api_client/sdk/async_execution.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Async execution management for async commands."""
12
from __future__ import annotations
23

34
import asyncio

src/runloop_api_client/sdk/async_execution_result.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Async execution result wrapper for completed commands."""
12
from __future__ import annotations
23

34
from .._client import AsyncRunloop

src/runloop_api_client/sdk/async_snapshot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Snapshot resource class for asynchronous operations."""
12
from __future__ import annotations
23

34
from typing import TYPE_CHECKING, Dict, Iterable, Optional

src/runloop_api_client/sdk/async_storage_object.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Storage object resource class for asynchronous operations."""
12
from __future__ import annotations
23

34
from typing_extensions import override

src/runloop_api_client/sdk/blueprint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Blueprint resource class for synchronous operations."""
12
from __future__ import annotations
23

34
from typing import TYPE_CHECKING, Dict, Iterable, Optional

0 commit comments

Comments
 (0)