Skip to content

Commit 7150caa

Browse files
Merge pull request #19 from LeandroDeJesus-S/docs/fix-readme-examples-imports
docs: Fix README examples imports.
2 parents 6946209 + 2b5dd4d commit 7150caa

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README-pt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ client = abacatepay.AbacatePay(api_key="<your-api-key>")
5555
### Criar uma fatura
5656

5757
```python
58-
from abacatepay.models import Product
58+
from abacatepay.products import Product
5959

6060
client = abacatepay.AbacatePay(api_key="<your-api-key>")
6161

@@ -89,7 +89,7 @@ for billing in billings:
8989
### Gerenciamento de clientes
9090

9191
```python
92-
from abacatepay.models import Customer
92+
from abacatepay.customers import Customer
9393

9494
customer = Customer(
9595
email="customer@example.com",

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ client = abacatepay.AbacatePay(api_key="<your-api-key>")
5656
### Create a Billing
5757

5858
```python
59-
from abacatepay.models import Product
59+
from abacatepay.products import Product
6060

6161
client = abacatepay.AbacatePay(api_key="<your-api-key>")
6262

@@ -90,7 +90,7 @@ for billing in billings:
9090
### Customer Management
9191

9292
```python
93-
from abacatepay.models import Customer
93+
from abacatepay.customers import Customer
9494

9595
customer = Customer(
9696
email="customer@example.com",

0 commit comments

Comments
 (0)