Skip to content

Commit 55a069b

Browse files
Clara Brasseurbsipocz
authored andcommitted
pep8
1 parent 81af4fe commit 55a069b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

astroquery/mast/core.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -506,14 +506,13 @@ def _get_col_config(self, service, fetch_name=None):
506506
response = self._request("POST", self._MAST_REQUEST_URL, data=reqString, headers=headers)
507507
jsonResponse = response[0].json()
508508

509-
self._column_configs[service].update(jsonResponse['data']['Tables'][0]\
509+
self._column_configs[service].update(jsonResponse['data']['Tables'][0]
510510
['ExtendedProperties']['discreteHistogram'])
511-
self._column_configs[service].update(jsonResponse['data']['Tables'][0]\
511+
self._column_configs[service].update(jsonResponse['data']['Tables'][0]
512512
['ExtendedProperties']['continuousHistogram'])
513513
for col, val in self._column_configs[service].items():
514514
val.pop('hist', None) # don't want to save all this unecessary data
515515

516-
517516
def _parse_result(self, responses, verbose=False):
518517
"""
519518
Parse the results of a list of ``requests.Response`` objects and returns an `astropy.table.Table` of results.

0 commit comments

Comments
 (0)