Skip to content

Commit c8c19c6

Browse files
committed
Adding comments to config items to fix parser issues
1 parent 63987c7 commit c8c19c6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

astroquery/esa/jwst/__init__.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@
1212
1313
Created on 23 oct. 2018
1414
15-
1615
"""
1716

18-
from astroquery.utils.tap.core import TapPlus
17+
1918
from astropy import config as _config
2019

2120

@@ -24,10 +23,10 @@ class Conf(_config.ConfigNamespace):
2423
Configuration parameters for `astroquery.esa.jwst`.
2524
"""
2625

27-
JWST_TAP_SERVER = _config.ConfigItem("http://jwstdummytap.com")
28-
JWST_DATA_SERVER = _config.ConfigItem("http://jwstdummydata.com")
29-
JWST_TOKEN = _config.ConfigItem("jwstToken")
30-
JWST_MESSAGES = _config.ConfigItem("notification?action=GetNotifications")
26+
JWST_TAP_SERVER = _config.ConfigItem("http://jwstdummytap.com", "eJWST TAP Server")
27+
JWST_DATA_SERVER = _config.ConfigItem("http://jwstdummydata.com", "eJWST Data Server")
28+
JWST_TOKEN = _config.ConfigItem("jwstToken", "eJWST token")
29+
JWST_MESSAGES = _config.ConfigItem("notification?action=GetNotifications", "eJWST Messages")
3130

3231
JWST_MAIN_TABLE = _config.ConfigItem("jwst.main", "JWST main table, combination of observation and plane tables.")
3332

0 commit comments

Comments
 (0)