File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- version = " 4.45 .*"
1+ version = " 4.46 .*"
22upstream-repository = " https://github.com/braintree/braintree_python"
Original file line number Diff line number Diff line change @@ -314,6 +314,8 @@ class ErrorCodes:
314314 CannotVaultOneTimeUsePayPalAccount : Final = "82902"
315315 ConsentCodeOrAccessTokenIsRequired : Final = "82901"
316316 CustomerIdIsRequiredForVaulting : Final = "82905"
317+ EmailFormatIsInvalid : Final = "92963"
318+ EmailIsTooLong : Final = "92964"
317319 InvalidParamsForPayPalAccountUpdate : Final = "92915"
318320 PayPalAccountsAreNotAccepted : Final = "82904"
319321 PayPalCommunicationError : Final = "92910"
Original file line number Diff line number Diff line change 1+ import re
2+ from typing import Final
3+
4+ VALID_PATH_SEGMENT_REGEX : Final [re .Pattern [str ]]
5+
6+ def is_invalid_path_segment (value : object ) -> bool : ...
You can’t perform that action at this time.
0 commit comments