Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions appstoreconnect/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,7 @@ def read_beta_group_information(self, beta_group_ip):

def add_build_to_beta_group(self, beta_group_id, build_id):
post_data = {'data': [{ 'id': build_id, 'type': 'builds'}]}
payload = self._api_call(BASE_API + "/v1/betaGroups/" + beta_group_id + "/relationships/builds", HttpMethod.POST, post_data)
return BetaGroup(payload.get('data'), {})
self._api_call(BASE_API + "/v1/betaGroups/" + beta_group_id + "/relationships/builds", HttpMethod.POST, post_data)

# App Resources
def read_app_information(self, app_ip):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
REQUIRED = [
'requests>=2.20.1,==2.*',
'PyJWT>=1.6.4,==1.*',
'cryptography>=2.6.1,==2.*',
'cryptography>=2.6.1',
]

EXTRAS = {
Expand Down