Skip to content

Commit fabad9f

Browse files
feat: clean up environment call outs
1 parent 64d2e9d commit fabad9f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

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

8585
```python
86-
import os
8786
import asyncio
8887
from orb import DefaultAioHttpClient
8988
from orb import AsyncOrb
9089

9190

9291
async def main() -> None:
9392
async with AsyncOrb(
94-
api_key=os.environ.get("ORB_API_KEY"), # This is the default and can be omitted
93+
api_key="My API Key",
9594
http_client=DefaultAioHttpClient(),
9695
) as client:
9796
customer = await client.customers.create(

0 commit comments

Comments
 (0)