Skip to content

Commit 6e52b49

Browse files
authored
Update introduction.md (#23)
Corrected the import statements in the UTCP introduction page. Updated from: from utcp.client import UtcpClient to: from utcp.client.utcp_client import UtcpClient This change reflects the correct way to import UtcpClient as per the latest library structure.
1 parent a43382a commit 6e52b49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ uvicorn app:app --reload
9191
```python
9292
# client.py
9393
import asyncio
94-
from utcp.client import UtcpClient
94+
from utcp.client.utcp_client import UtcpClient
9595
from utcp.shared.provider import HttpProvider
9696

9797
async def main():

0 commit comments

Comments
 (0)