Skip to content

Commit f040f2a

Browse files
committed
docs: updated docs
1 parent cb07c23 commit f040f2a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ pip install </path/to/>open-payments-python-sdk/dist/open_payments_sdk-0.1.0-py3
7070
To create a client you can do so by importing the `OpenPaymentsClient` defined in the [`client`](./src/client/client.py) module and instantiating it.
7171

7272
```python
73-
from open_payments_sdk.client.client import OpenPayemntsClient
73+
from open_payments_sdk.client.client import OpenPaymentsClient
7474

7575
with open("privkey.pem","r",encoding="utf_8") as privkey:
7676
private_key = privkey.read()
7777

78-
op_client = OpenPayemntsClient(keyid="27b4f8d2-746c-4522-b3f0-874ca15bfe65",private_key=private_key)
78+
op_client = OpenPaymentsClient(keyid="27b4f8d2-746c-4522-b3f0-874ca15bfe65",private_key=private_key)
7979
```
8080

8181
The client is to be created after you have created a key pair and have obtained the `kid` and `private_key`

0 commit comments

Comments
 (0)