Skip to content

Commit

Permalink
RCAL-769: Change Mosaic Association Model Name (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulHuwe authored Nov 17, 2024
1 parent 2670c4e commit a759389
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions changes/412.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Renamed mosaic association model variable name.
8 changes: 4 additions & 4 deletions src/roman_datamodels/maker_utils/_common_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,11 +498,11 @@ def mk_mosaic_associations(**kwargs):
roman_datamodels.stnode.MosaicAssociations
"""

mosass = stnode.MosaicAssociations()
mosass["pool_name"] = kwargs.get("pool_name", NOSTR)
mosass["table_name"] = kwargs.get("table_name", NOSTR)
mosasn = stnode.MosaicAssociations()
mosasn["pool_name"] = kwargs.get("pool_name", NOSTR)
mosasn["table_name"] = kwargs.get("table_name", NOSTR)

return mosass
return mosasn


def mk_guidewindow_meta(**kwargs):
Expand Down

0 comments on commit a759389

Please sign in to comment.