Skip to content

Commit

Permalink
PPR API verify new CI script updates.
Browse files Browse the repository at this point in the history
Signed-off-by: Doug Lovett <[email protected]>
  • Loading branch information
doug-lovett committed Dec 12, 2024
1 parent 537d06f commit f67a68a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ppr-api/src/ppr_api/resources/financing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
}


def pay_and_save( # pylint: disable=too-many-arguments,too-many-locals,too-many-branches
def pay_and_save( # pylint: disable=too-many-positional-arguments,too-many-locals,too-many-branches
req: request,
request_json,
registration_class,
Expand Down
4 changes: 2 additions & 2 deletions ppr-api/src/ppr_api/services/payment/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def __init__(self, jwt=None, account_id=None, api_key=None, details=None):
self.detail_label = None
self.detail_value = None

def call_api( # pylint: disable=too-many-arguments
def call_api( # pylint: disable=too-many-positional-arguments
self,
method,
relative_path,
Expand Down Expand Up @@ -320,7 +320,7 @@ def create_payment_staff_search_data(transaction_info, client_reference_id=None)

return data

def create_payment( # pylint: disable=too-many-arguments
def create_payment( # pylint: disable=too-many-positional-arguments
self, transaction_type, quantity=1, ppr_id=None, client_reference_id=None, processing_fee=None
):
"""Submit a payment request for the PPR API transaction."""
Expand Down
2 changes: 1 addition & 1 deletion ppr-api/src/ppr_api/services/payment/payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, jwt=None, account_id=None, api_key=None, details=None):
self.api_key = api_key
self.details = details

def create_payment( # pylint: disable=too-many-arguments
def create_payment( # pylint: disable=too-many-positional-arguments
self, transaction_type, quantity, transaction_id=None, client_reference_id=None, processing_fee=None
):
"""Submit a payment request for the account_id-jwt pair.
Expand Down

0 comments on commit f67a68a

Please sign in to comment.