Skip to content

Commit

Permalink
add linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lovrocolic committed Jan 27, 2025
1 parent 1d7487b commit 244fb75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 1 addition & 3 deletions lago_python_client/invoices/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,7 @@ def preview(self, input_object: InvoicePreview) -> InvoiceResponse:
origin=self.base_url,
path_parts=(self.API_RESOURCE, "preview"),
),
content=to_json(
input_object.dict()
),
content=to_json(input_object.dict()),
headers=make_headers(api_key=self.api_key),
)

Expand Down
6 changes: 1 addition & 5 deletions lago_python_client/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@
ChargeFilters as ChargeFilters,
ChargeFilter as ChargeFilter,
)
from .coupon import (
Coupon as Coupon,
CouponsList as CouponsList,
LimitationConfiguration as LimitationConfiguration
)
from .coupon import Coupon as Coupon, CouponsList as CouponsList, LimitationConfiguration as LimitationConfiguration
from .credit import CreditResponse as CreditResponse, CreditsResponse as CreditsResponse
from .credit_note import (
Item as Item,
Expand Down

0 comments on commit 244fb75

Please sign in to comment.