Skip to content

Commit 0dde48c

Browse files
committed
fix number of empty lines to make decorartor work.
1 parent bef740d commit 0dde48c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

astroquery/xmatch/core.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ class XMatchClass(BaseQuery):
1919

2020
def query(self, cat1, cat2, max_distance, colRA1=None,
2121
colDec1=None, colRA2=None, colDec2=None):
22-
"""Query the `CDS cross-match service
22+
"""
23+
Query the `CDS cross-match service
2324
<http://cdsxmatch.u-strasbg.fr/xmatch>`_ by finding matches between
2425
two (potentially big) catalogues.
2526
@@ -55,7 +56,6 @@ def query(self, cat1, cat2, max_distance, colRA1=None,
5556
-------
5657
table : `~astropy.table.Table`
5758
Query results table
58-
5959
"""
6060
response = self.query_async(
6161
cat1, cat2, max_distance, colRA1, colDec1, colRA2, colDec2)
@@ -66,12 +66,10 @@ def query_async(
6666
self, cat1, cat2, max_distance, colRA1=None,
6767
colDec1=None, colRA2=None, colDec2=None):
6868
"""
69-
7069
Returns
7170
-------
7271
response : `requests.Response`
7372
The HTTP response returned from the service.
74-
7573
"""
7674
if max_distance > 180 * arcsec:
7775
raise ValueError(

0 commit comments

Comments
 (0)