Skip to content

Commit

Permalink
Update generated code for v1093
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Jun 21, 2024
1 parent a247bfa commit 83d538f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1092
v1093
4 changes: 2 additions & 2 deletions stripe/tax/_calculation.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ def create(
cls, **params: Unpack["Calculation.CreateParams"]
) -> "Calculation":
"""
Calculates tax based on input and returns a Tax Calculation object.
Calculates tax based on the input and returns a Tax Calculation object.
"""
return cast(
"Calculation",
Expand All @@ -727,7 +727,7 @@ async def create_async(
cls, **params: Unpack["Calculation.CreateParams"]
) -> "Calculation":
"""
Calculates tax based on input and returns a Tax Calculation object.
Calculates tax based on the input and returns a Tax Calculation object.
"""
return cast(
"Calculation",
Expand Down
4 changes: 2 additions & 2 deletions stripe/tax/_calculation_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def create(
options: RequestOptions = {},
) -> Calculation:
"""
Calculates tax based on input and returns a Tax Calculation object.
Calculates tax based on the input and returns a Tax Calculation object.
"""
return cast(
Calculation,
Expand All @@ -297,7 +297,7 @@ async def create_async(
options: RequestOptions = {},
) -> Calculation:
"""
Calculates tax based on input and returns a Tax Calculation object.
Calculates tax based on the input and returns a Tax Calculation object.
"""
return cast(
Calculation,
Expand Down

0 comments on commit 83d538f

Please sign in to comment.