Skip to content

Commit c5d1b43

Browse files
committed
formatting changes
1 parent 055ba83 commit c5d1b43

16 files changed

Lines changed: 16 additions & 0 deletions

src/runloop_api_client/sdk/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
Provides both sync (`RunloopSDK`) and async (`AsyncRunloopSDK`) interfaces.
44
"""
5+
56
from __future__ import annotations
67

78
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,4 +1,5 @@
11
"""SDK helper types and utility functions."""
2+
23
from __future__ import annotations
34

45
import io

src/runloop_api_client/sdk/async_.py

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

45
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,4 +1,5 @@
11
"""Blueprint resource class for asynchronous operations."""
2+
23
from __future__ import annotations
34

45
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,4 +1,5 @@
11
"""Asynchronous devbox resource class."""
2+
23
from __future__ import annotations
34

45
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,4 +1,5 @@
11
"""Async execution management for async commands."""
2+
23
from __future__ import annotations
34

45
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,4 +1,5 @@
11
"""Async execution result wrapper for completed commands."""
2+
23
from __future__ import annotations
34

45
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,4 +1,5 @@
11
"""Snapshot resource class for asynchronous operations."""
2+
23
from __future__ import annotations
34

45
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,4 +1,5 @@
11
"""Storage object resource class for asynchronous operations."""
2+
23
from __future__ import annotations
34

45
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,4 +1,5 @@
11
"""Blueprint resource class for synchronous operations."""
2+
23
from __future__ import annotations
34

45
from typing import TYPE_CHECKING, Dict, Iterable, Optional

0 commit comments

Comments
 (0)