updates based on feedback

This commit is contained in:
csine-nflx
2020-03-05 15:24:56 -08:00
parent b85fe2f2b5
commit 771e72187a
2 changed files with 3 additions and 3 deletions

View File

@ -251,7 +251,7 @@ def _get(path, params=None):
f"{base_uri}{path}",
headers=_generate_header(),
params=params,
verify=verify_value,
verify=verify_value
)
resp.raise_for_status()
return resp.json()
@ -265,6 +265,6 @@ def _patch(path, payload):
f"{base_uri}{path}",
data=json.dumps(payload),
headers=_generate_header(),
verify=verify_value,
verify=verify_value
)
resp.raise_for_status()