Skip to content

Commit d53f258

Browse files
committed
AccountId
1 parent 6af6649 commit d53f258

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "recnetpy"
7-
version = "0.2.57"
7+
version = "0.2.58"
88
authors = [
99
{ name="RecNetBot Development"}
1010
]

src/recnetpy/managers/account_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def create_from_data_list(self, data: List['AccountResponse']) -> List['Account'
105105
"""
106106
account_list: List['Account'] = []
107107
for account_data in data:
108-
account_obj = Account(self.client, account_data['accountId'], account_data)
108+
account_obj = Account(self.client, account_data['AccountId'], account_data)
109109
account_list.append(account_obj)
110110
return account_list
111111

0 commit comments

Comments
 (0)