Skip to content

Commit

Permalink
fix: solve a bug when acessing schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
joepreludian committed Nov 3, 2024
1 parent 28b7da4 commit 08e072f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "asaaspy"
version = "0.25.0"
version = "0.25.1"
description = "Unnoficial python client for Asaas"
authors = [
{name = "Jonhnatha Trigueiro", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion src/asaaspy/client/resources/pix.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
PixTransactionSchema,
QRCodePayViewSchema,
)
from schemas.v3.pix import PixTransactionsFilterBySchema
from asaaspy.schemas.v3.pix import PixTransactionsFilterBySchema


class PixResource(AsaasResource):
Expand Down
4 changes: 4 additions & 0 deletions src/asaaspy/client/resources/subaccounts.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from asaaspy.client.base import AsaasResource


class SubAccounts(AsaasResource): ...

0 comments on commit 08e072f

Please sign in to comment.