Skip to content

Commit ad0dc27

Browse files
committed
BUG: get_member_observations should return list not MaskedColumn
1 parent f1a7888 commit ad0dc27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/esa/hubble/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def _select_related_members(self, observation_id):
299299
def _select_related_composite(self, observation_id):
300300
query = f"select observation_id from ehst.observation where members like '%{observation_id}%'"
301301
job = self.query_tap(query=query)
302-
oids = job["observation_id"]
302+
oids = job["observation_id"].tolist()
303303
return oids
304304

305305
def __validate_product_type(self, product_type):

0 commit comments

Comments
 (0)