Skip to content

Commit

Permalink
Fix issue with catalog format.
Browse files Browse the repository at this point in the history
  • Loading branch information
mairanteodoro committed Nov 16, 2023
1 parent a3ac437 commit 9020ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion romancal/tweakreg/tweakreg_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def process(self, input):
)
if is_tweakreg_catalog_present:
# read catalog from structured array
catalog = Table(image_model.meta.source_detection.tweakreg_catalog)
catalog = Table(np.asarray(image_model.meta.source_detection.tweakreg_catalog))
elif is_tweakreg_catalog_name_present:
catalog = Table.read(
image_model.meta.source_detection.tweakreg_catalog_name,
Expand Down

0 comments on commit 9020ba1

Please sign in to comment.