Skip to content

Commit e3a125d

Browse files
feat: clean up environment call outs
1 parent 27c4579 commit e3a125d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,14 @@ pip install runloop_api_client[aiohttp]
7979
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
8080

8181
```python
82-
import os
8382
import asyncio
8483
from runloop_api_client import DefaultAioHttpClient
8584
from runloop_api_client import AsyncRunloop
8685

8786

8887
async def main() -> None:
8988
async with AsyncRunloop(
90-
bearer_token=os.environ.get("RUNLOOP_API_KEY"), # This is the default and can be omitted
89+
bearer_token="My Bearer Token",
9190
http_client=DefaultAioHttpClient(),
9291
) as client:
9392
devbox_view = await client.devboxes.create()

0 commit comments

Comments
 (0)