Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Feb 6, 2024
1 parent 14e8bb8 commit bf176f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tom_dataproducts/sharing.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def share_data_with_hermes(share_destination, form_data, product_id=None, target
target = Target.objects.none()
title_name = target.name if target else ''
reduced_datums.filter(data_type__in=accepted_data_types)
return _share_with_hermes(share_destination, form_data, title_name, reduced_datums, targets=Target.objects.filter(pk=target.pk))
return _share_with_hermes(
share_destination, form_data, title_name, reduced_datums, targets=Target.objects.filter(pk=target.pk)
)


def _share_with_hermes(share_destination, form_data, title_name,
Expand Down

0 comments on commit bf176f7

Please sign in to comment.