Skip to content

Commit 26d2a36

Browse files
snbiancobsipocz
authored andcommitted
style fixes
fix function docstrings
1 parent 51d4502 commit 26d2a36

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

astroquery/mast/core.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from ..query import QueryWithLogin
1212
from . import utils
1313
from .auth import MastAuth
14-
from .cloud import CloudAccess
1514
from .discovery_portal import PortalAPI
1615
from .services import ServiceAPI
1716

@@ -89,20 +88,16 @@ def enable_cloud_dataset(self, provider="AWS", profile=None, verbose=True):
8988
"""
9089
.. deprecated:: 0.4.8
9190
This function is non-operational and has been deprecated.
92-
93-
:raises AstropyDeprecationWarning: This function is deprecated and should not be used.
9491
"""
95-
warnings.warn('This function is non-operational and will be removed in a future release.',
92+
warnings.warn('This function is non-operational and will be removed in a future release.',
9693
AstropyDeprecationWarning)
9794

9895
def disable_cloud_dataset(self):
9996
"""
10097
.. deprecated:: 0.4.8
10198
This function is non-operational and has been deprecated.
102-
103-
:raises AstropyDeprecationWarning: This function is deprecated and should not be used.
10499
"""
105-
warnings.warn('This function is non-operational and will be removed in a future release.',
100+
warnings.warn('This function is non-operational and will be removed in a future release.',
106101
AstropyDeprecationWarning)
107102

108103
def resolve_object(self, objectname):

0 commit comments

Comments
 (0)