Skip to content

Commit

Permalink
add underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
arahlin committed Sep 8, 2023
1 parent f85cd2e commit e60913f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions maps/python/map_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,9 +625,9 @@ def __call__(self, frame):
if "InputFiles" in frame:
# allow for recursive coadds
input_files += list(frame["InputFiles"])
elif getattr(frame, "filename", None):
if frame.filename not in input_files:
input_files += [frame.filename]
elif getattr(frame, "_filename", None):
if frame._filename not in input_files:
input_files += [frame._filename]
if len(input_files):
cfr["InputFiles"] = core.G3VectorString(input_files)

Expand Down

0 comments on commit e60913f

Please sign in to comment.