YAPF formatting

This commit is contained in:
Ivan Kravets
2017-03-02 17:09:22 +02:00
parent cfd1f03023
commit fe1846c2e1
11 changed files with 38 additions and 53 deletions

View File

@@ -458,11 +458,12 @@ def _get_api_result(
auth=auth,
verify=disable_ssl_check)
else:
r = _api_request_session().get(url,
params=params,
headers=headers,
auth=auth,
verify=disable_ssl_check)
r = _api_request_session().get(
url,
params=params,
headers=headers,
auth=auth,
verify=disable_ssl_check)
result = r.json()
r.raise_for_status()
except requests.exceptions.HTTPError as e: