Skip to content

Commit 5a233f3

Browse files
Jorge Fernandez Hernandezbsipocz
authored andcommitted
EUCLIDPCR-1914 fix parameters in the constructor
1 parent 7a84a5a commit 5a233f3

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

astroquery/esa/euclid/core.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,19 @@ class EuclidClass(TapPlus):
4242
__VALID_DATALINK_RETRIEVAL_TYPES = conf.VALID_DATALINK_RETRIEVAL_TYPES
4343

4444
def __init__(self, *, environment='PDR', tap_plus_conn_handler=None, datalink_handler=None, cutout_handler=None,
45-
euclid_tap_server=None, euclid_data_server=None, euclid_cutout_server=None, verbose=False,
46-
show_server_messages=True):
45+
verbose=False, show_server_messages=True):
4746
"""Constructor for EuclidClass.
4847
4948
Parameters
5049
----------
5150
environment : str, mandatory if no tap, data or cutout hosts is specified, default 'PDR'
5251
The Euclid Science Archive environment: 'PDR', 'IDR', 'OTF' and 'REG'
53-
euclid_tap_server : str, optional, default None
54-
TAP URL
55-
euclid_data_server : str, optional, default None
56-
data URL
57-
euclid_cutout_server : str, optional, default None
58-
cutout URL
52+
tap_plus_conn_handler : tap connection handler object, optional, default None
53+
HTTP(s) connection hander (creator). If no handler is provided, a new one is created.
54+
datalink_handler : dataliink connection handler object, optional, default None
55+
HTTP(s) connection hander (creator). If no handler is provided, a new one is created.
56+
cutout_handler : cutout connection handler object, optional, default None
57+
HTTP(s) connection hander (creator). If no handler is provided, a new one is created.
5958
verbose : bool, optional, default 'True'
6059
flag to display information about the process
6160
show_server_messages : bool, optional, default 'True'

0 commit comments

Comments
 (0)