Skip to content

Commit

Permalink
Fix ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
Maffooch committed Jul 22, 2024
1 parent 8787d8e commit 0e86398
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dojo/api_v2/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2064,7 +2064,7 @@ class ImportScanSerializer(serializers.Serializer):
queryset=Endpoint.objects.all(),
required=False,
default=None,
help_text="Enter the ID of an Endpoint that is associated with the target Product. New Findings will be added to that Endpoint."
help_text="Enter the ID of an Endpoint that is associated with the target Product. New Findings will be added to that Endpoint.",
)
file = serializers.FileField(allow_empty_file=True, required=False)
product_type_name = serializers.CharField(required=False)
Expand Down Expand Up @@ -2334,7 +2334,7 @@ class ReImportScanSerializer(TaggitSerializer, serializers.Serializer):
queryset=Endpoint.objects.all(),
required=False,
default=None,
help_text="Enter the ID of an Endpoint that is associated with the target Product. New Findings will be added to that Endpoint."
help_text="Enter the ID of an Endpoint that is associated with the target Product. New Findings will be added to that Endpoint.",
)
file = serializers.FileField(allow_empty_file=True, required=False)
product_type_name = serializers.CharField(required=False)
Expand Down

0 comments on commit 0e86398

Please sign in to comment.