File tree Expand file tree Collapse file tree
src/runloop_api_client/sdk Expand file tree Collapse file tree Original file line number Diff line number Diff 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())
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments