Skip to content

Commit 649504e

Browse files
committed
formatting fixes
1 parent 2eaff32 commit 649504e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/runloop_api_client/sdk/async_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ class AsyncRunloopSDK:
444444
storage_object: High-level async interface for storage object management.
445445
446446
Example:
447-
>>> runloop = AsyncRunloopSDK() # Uses RUNLOOP_API_KEY env var
447+
>>> runloop = AsyncRunloopSDK() # Uses RUNLOOP_API_KEY env var
448448
>>> devbox = await runloop.devbox.create(name="my-devbox")
449449
>>> result = await devbox.cmd.exec(command="echo 'hello'")
450450
>>> print(await result.stdout())

src/runloop_api_client/sdk/sync.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,9 @@ class BlueprintClient:
211211
212212
Example:
213213
>>> runloop = RunloopSDK()
214-
>>> blueprint = runloop.blueprint.create(name="my-blueprint", dockerfile="FROM ubuntu:22.04\\nRUN apt-get update")
214+
>>> blueprint = runloop.blueprint.create(
215+
... name="my-blueprint", dockerfile="FROM ubuntu:22.04\\nRUN apt-get update"
216+
... )
215217
>>> blueprints = runloop.blueprint.list()
216218
"""
217219

0 commit comments

Comments
 (0)