Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
davedavemckay committed Jan 15, 2025
1 parent 5ce7029 commit ba473c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csd3-side/scripts/lsst-backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def compare_zip_contents_bool(to_collate, id: int, current_objects: pd.DataFrame
Returns:
return_bool: A bool == True if the zip should be uploaded.
"""
collate_object_names = [to_collate.id == id]['object_names'].values[0]
collate_object_names = to_collate[[to_collate.id == id]]['object_names'].values[0]
return_bool = True
# dprint(f'collate_object_names: {collate_object_names}', flush=True)
# dprint(f'type: {type(collate_object_names)}', flush=True)
Expand Down

0 comments on commit ba473c9

Please sign in to comment.