Skip to content

Commit 3d8cf3d

Browse files
feat: clean up environment call outs
1 parent 34c2827 commit 3d8cf3d

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 brand.dev[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 brand.dev import DefaultAioHttpClient
8988
from brand.dev import AsyncBrandDev
9089

9190

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

0 commit comments

Comments
 (0)