Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
arahlin authored Sep 28, 2023
1 parent 0c4c6ea commit 55659ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maps/python/map_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def __call__(self, frame):
map_ids = []
if "InputMapIds" in frame:
# allow for recursive coadds
map_ids += [i for i in frame["InputMapIds"] if i not in mapids]
map_ids += [i for i in frame["InputMapIds"] if i not in map_ids]
elif frame.get("Id", None):
if frame["Id"] not in map_ids:
map_ids += [frame["Id"]]
Expand Down

0 comments on commit 55659ac

Please sign in to comment.