Skip to content

Commit

Permalink
Fix lint error.
Browse files Browse the repository at this point in the history
No-Issue

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner committed Sep 11, 2023
1 parent 14db56a commit ff1b65e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion galaxy_ng/app/api/v1/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,10 @@ def get_summary_fields(self, obj):
provider_ns = {
'id': obj.namespace.namespace.id,
'name': obj.namespace.namespace.name,
'pulp_href': f"/api/pulp/api/v3/pulp_ansible/namespaces/{obj.namespace.namespace.id}/"
'pulp_href': (
"/api/pulp/api/v3/pulp_ansible/namespaces/"
+ f"{obj.namespace.namespace.id}/"
)
}

return {
Expand Down

0 comments on commit ff1b65e

Please sign in to comment.