From 1d914fca6a7daaaf7466b6e9b3d9a0b62edd72ee Mon Sep 17 00:00:00 2001 From: Mike Ossig Date: Fri, 5 Apr 2024 11:45:14 -0400 Subject: [PATCH] removes duplicate method --- method/resources/Account.py | 6 ------ setup.py | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/method/resources/Account.py b/method/resources/Account.py index 6acdf4e..9dcfb78 100644 --- a/method/resources/Account.py +++ b/method/resources/Account.py @@ -549,9 +549,3 @@ def get_payoff(self, _id: str, pyf_id: str) -> AccountPayoff: def create_payoff(self, _id: str) -> AccountPayoff: return super(AccountResource, self)._create_with_sub_path('{_id}/payoffs'.format(_id=_id), {}) - - def withdraw_consent(self, _id: str) -> Account: - return super(AccountResource, self)._create_with_sub_path( - '{_id}/consent'.format(_id=_id), - {'type': 'withdraw', 'reason': 'holder_withdrew_consent'} - ) diff --git a/setup.py b/setup.py index aee2d6e..a276f4b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='method-python', - version='0.0.43', + version='0.0.44', description='Python library for the Method API', long_description='Python library for the Method API', long_description_content_type='text/x-rst',