Skip to content

Commit 5b6d5b1

Browse files
authored
Adding line breaks
1 parent ff99717 commit 5b6d5b1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

astroquery/mast/observations.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,8 @@ def get_cloud_uris(self, data_products, include_bucket=True, full_url=False):
753753
"""
754754

755755
if self._cloud_connection is None:
756-
raise RemoteServiceError('Please enable anonymous cloud access by calling `enable_cloud_dataset` method. See MAST Labs documentation for an example: https://mast-labs.stsci.io/#example-data-access-with-astroquery-observations')
756+
raise RemoteServiceError('Please enable anonymous cloud access by calling `enable_cloud_dataset` method. '
757+
'See MAST Labs documentation for an example: https://mast-labs.stsci.io/#example-data-access-with-astroquery-observations')
757758

758759
return self._cloud_connection.get_cloud_uri_list(data_products, include_bucket, full_url)
759760

@@ -784,7 +785,8 @@ def get_cloud_uri(self, data_product, include_bucket=True, full_url=False):
784785
"""
785786

786787
if self._cloud_connection is None:
787-
raise RemoteServiceError('Please enable anonymous cloud access by calling `enable_cloud_dataset` method. See MAST Labs documentation for an example: https://mast-labs.stsci.io/#example-data-access-with-astroquery-observations')
788+
raise RemoteServiceError('Please enable anonymous cloud access by calling `enable_cloud_dataset` method. '
789+
'See MAST Labs documentation for an example: https://mast-labs.stsci.io/#example-data-access-with-astroquery-observations')
788790

789791
# Query for product URIs
790792
return self._cloud_connection.get_cloud_uri(data_product, include_bucket, full_url)

0 commit comments

Comments
 (0)