Skip to content

Commit 843927b

Browse files
author
gabino
committed
Rename terms_of_service and users_tos_agreements
1 parent b921a2c commit 843927b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cuenca/resources/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@
7373
from .service_providers import ServiceProvider
7474
from .sessions import Session
7575
from .statements import Statement
76-
from .terms_of_services import TermsOfService
76+
from .terms_of_service import TermsOfService
7777
from .transfers import Transfer
7878
from .user_credentials import UserCredential
7979
from .user_events import UserEvent
8080
from .user_lists_validation import UserListsValidation
8181
from .user_logins import UserLogin
82-
from .user_tos_agreements import UserTOSAgreement
8382
from .users import User
83+
from .users_tos_agreements import UserTOSAgreement
8484
from .verifications import Verification
8585
from .wallet_transactions import WalletTransaction
8686
from .webhooks import Webhook
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class TermsOfService(Retrievable, Queryable):
11-
_resource: ClassVar = 'terms_of_services'
11+
_resource: ClassVar = 'terms_of_service'
1212

1313
id: str
1414
is_active: bool
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class UserTOSAgreement(Creatable, Retrievable, Queryable):
11-
_resource: ClassVar = 'user_tos_agreements'
11+
_resource: ClassVar = 'users_tos_agreements'
1212

1313
id: str
1414
created_at: dt.datetime

cuenca/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '2.1.3'
1+
__version__ = '2.1.4.dev0'
22
CLIENT_VERSION = __version__
33
API_VERSION = '2020-03-19'

0 commit comments

Comments
 (0)