Skip to content

Commit 3ee6948

Browse files
feat: clean up environment call outs
1 parent 2a5d531 commit 3ee6948

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
@@ -87,15 +87,14 @@ pip install isaacus[aiohttp]
8787
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
8888

8989
```python
90-
import os
9190
import asyncio
9291
from isaacus import DefaultAioHttpClient
9392
from isaacus import AsyncIsaacus
9493

9594

9695
async def main() -> None:
9796
async with AsyncIsaacus(
98-
api_key=os.environ.get("ISAACUS_API_KEY"), # This is the default and can be omitted
97+
api_key="My API Key",
9998
http_client=DefaultAioHttpClient(),
10099
) as client:
101100
universal_classification = await client.classifications.universal.create(

0 commit comments

Comments
 (0)