From b1a24946d6999a5f493c94a5c2a48cbbb56e8168 Mon Sep 17 00:00:00 2001 From: Georg Krause <mail@georg-krause.net> Date: Fri, 2 Dec 2022 10:37:11 +0100 Subject: [PATCH] Lint --- funkwhale_network/schemas.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/funkwhale_network/schemas.py b/funkwhale_network/schemas.py index ec95805..7e0bedd 100644 --- a/funkwhale_network/schemas.py +++ b/funkwhale_network/schemas.py @@ -113,7 +113,9 @@ class MetadataSchema(marshmallow.Schema): nodeName = marshmallow.fields.String(required=True) private = marshmallow.fields.Boolean(required=True) library = marshmallow.fields.Nested(LibraryMetadataSchema, required=True) - usage = marshmallow.fields.Nested(MetadataUsageSchema, required=False, allow_none=True) + usage = marshmallow.fields.Nested( + MetadataUsageSchema, required=False, allow_none=True + ) class Meta: unknown = marshmallow.EXCLUDE -- GitLab