Skip to content

Commit

Permalink
Merge branch 'github_master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
braintreeps committed Nov 12, 2021
2 parents 953e8ea + e6ac795 commit 5bdf09d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion braintree/exceptions/server_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class ServerError(BraintreeError):
"""
Raised when the gateway raises an error. Please contant support at [email protected].
Raised when the gateway raises an error. Please contact support at [email protected].
See https://developers.braintreepayments.com/reference/general/exceptions/python#server-error
"""
Expand Down
4 changes: 2 additions & 2 deletions braintree/subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Source(object):
# NEXT_MAJOR_VERSION this can be an enum! they were added as of python 3.4 and we support 3.5+
class Status(object):
"""
Constants representing subscription statusues. Available statuses are:
Constants representing subscription statuses. Available statuses are:
* braintree.Subscription.Status.Active
* braintree.Subscription.Status.Canceled
Expand Down Expand Up @@ -177,7 +177,7 @@ def search(*query):
- status
For text fields, you can search using the following operators: ==, !=, starts_with, ends_with
and contains. For mutiple value fields, you can search using the in_list operator. An example::
and contains. For multiple value fields, you can search using the in_list operator. An example::
braintree.Subscription.search([
braintree.SubscriptionSearch.plan_id.starts_with("abc"),
Expand Down
2 changes: 1 addition & 1 deletion braintree/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def submit_for_settlement(transaction_id, amount=None, params=None):
@staticmethod
def update_details(transaction_id, params=None):
"""
Updates exisiting details for transaction submtted_for_settlement.
Updates existing details for transaction submitted_for_settlement.
Requires the transaction id::
Expand Down
2 changes: 1 addition & 1 deletion braintree/us_bank_account_verification_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ class UsBankAccountVerificationSearch:
# Equality fields
account_type = Search.EqualityNodeBuilder("account_type")

# Ends-with fieds
# Ends-with fields
account_number = Search.EndsWithNodeBuilder("account_number")

0 comments on commit 5bdf09d

Please sign in to comment.