Skip to content

Commit

Permalink
Correct function name in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpieters committed Oct 6, 2023
1 parent 5f8ffd8 commit ea8cea0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ Check the [Python Connect SDK Example](example/README.md) to see an example of i
```python
from onepasswordconnectsdk.client import (
Client,
new_client_from_env,
new_client_from_environment,
)

connect_client: Client = new_client_from_env()
connect_client: Client = new_client_from_environment()

client.get_item("{item_id}", "{vault_id}")
```
Expand All @@ -52,7 +52,7 @@ Check the [Python Connect SDK Example](example/README.md) to see an example of i
```python
from onepasswordconnectsdk.client import (
Client,
new_client_from_env,
new_client_from_environment,
}

from onepasswordconnectsdk.models import (
Expand All @@ -61,7 +61,7 @@ Check the [Python Connect SDK Example](example/README.md) to see an example of i
Field
)

connect_client: Client = new_client_from_env()
connect_client: Client = new_client_from_environment()

# Example item creation. Create an item with your desired arguments.
item = Item(
Expand Down

0 comments on commit ea8cea0

Please sign in to comment.