Skip to content

Commit

Permalink
Clear pol_type attribute in input stub for map frame reprojection
Browse files Browse the repository at this point in the history
  • Loading branch information
arahlin committed Nov 4, 2024
1 parent 702b4c3 commit c498dd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion maps/python/map_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,8 @@ class ReprojectMaps(object):

def __init__(self, map_stub=None, rebin=1, interp=False):
assert map_stub is not None, "map_stub argument required"
self.stub = map_stub
self.stub = map_stub.clone(False)
self.stub.pol_type = None
self.rebin = rebin
self.interp = interp

Expand Down

0 comments on commit c498dd2

Please sign in to comment.