Skip to content

Commit ecba4b5

Browse files
committed
minor whitespace
1 parent 6f7087e commit ecba4b5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

astroquery/vizier/core.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,9 @@ def find_catalogs(self, keywords, include_obsolete=False, verbose=False,
176176
data=data_payload,
177177
timeout=self.TIMEOUT)
178178
if 'STOP, Max. number of RESOURCE reached' in response.text:
179-
raise ValueError("Maximum number of catalogs exceeded. Try setting max_catalogs "
180-
"to a large number and try again")
179+
raise ValueError("Maximum number of catalogs exceeded. Try "
180+
"setting max_catalogs to a large number and"
181+
" try again")
181182
result = self._parse_result(response, verbose=verbose, get_catalog_names=True)
182183

183184
# Filter out the obsolete catalogs, unless requested
@@ -536,7 +537,8 @@ def _args_to_payload(self, *args, **kwargs):
536537
script += "\n" + str(self.keywords)
537538
return script
538539

539-
def _parse_result(self, response, get_catalog_names=False, verbose=False, invalid='warn'):
540+
def _parse_result(self, response, get_catalog_names=False, verbose=False,
541+
invalid='warn'):
540542
"""
541543
Parses the HTTP response to create a `~astropy.table.Table`.
542544

0 commit comments

Comments
 (0)