File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,19 @@ class Conf(_config.ConfigNamespace):
1010 Configuration parameters for `astroquery.alma`.
1111 """
1212
13- timeout = _config .ConfigItem (60 , "Timeout in seconds" )
13+ timeout = _config .ConfigItem (60 , "Timeout in seconds. " )
1414
1515 archive_url = _config .ConfigItem (
1616 ['http://almascience.org' ,
1717 'http://almascience.eso.org' ,
1818 'http://almascience.nrao.edu' ,
1919 'http://almascience.nao.ac.jp' ,
2020 'http://beta.cadc-ccda.hia-iha.nrc-cnrc.gc.ca' ],
21- 'The ALMA Archive mirror to use' )
21+ 'The ALMA Archive mirror to use.' )
22+
23+ username = _config .ConfigItem (
24+ "" ,
25+ 'Optional default username for ALMA archive.' )
2226
2327conf = Conf ()
2428
Original file line number Diff line number Diff line change @@ -21,13 +21,16 @@ class Conf(_config.ConfigNamespace):
2121
2222 query_url = _config .ConfigItem (
2323 ['http://www.cosmosim.org/uws/query' ],
24- 'CosmoSim UWS query URL' )
24+ 'CosmoSim UWS query URL. ' )
2525 schema_url = _config .ConfigItem (
2626 ['http://www.cosmosim.org/query/account/databases/json' ],
27- 'CosmoSim json query URL for generating database schema' )
27+ 'CosmoSim json query URL for generating database schema. ' )
2828 timeout = _config .ConfigItem (
2929 60.0 ,
30- 'Timeout for CosmoSim query' )
30+ 'Timeout for CosmoSim query.' )
31+ username = _config .ConfigItem (
32+ "" ,
33+ 'Optional default username for CosmoSim database.' )
3134
3235conf = Conf ()
3336
You can’t perform that action at this time.
0 commit comments