Skip to content

Commit

Permalink
avoid repeat inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbhughes committed Nov 19, 2024
1 parent 1e6ae1c commit c71274a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions punchpipe/flows/starfield.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ def construct_starfield_background_flow_info(level3_fcorona_subtracted_files: li
priority = pipeline_config["levels"][flow_type]["priority"]["initial"]
call_data = json.dumps(
{
"filenames": [
"filenames": list(set([
os.path.join(level3_file.directory(pipeline_config["root"]), level3_file.filename())
for level3_file in level3_fcorona_subtracted_files
],
])),
}
)
return Flow(
Expand Down

0 comments on commit c71274a

Please sign in to comment.