From 5208db4c67ad66035404c647f19da8c6d1bfb981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Kl=C3=BCnder?= Date: Thu, 30 Nov 2023 23:04:03 +0100 Subject: [PATCH] =?UTF-8?q?fix=20firmwarschema=20serialize=3F=20maybe?= =?UTF-8?q?=E2=80=A6=3F=20mew=3F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/c3nav/mesh/newapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c3nav/mesh/newapi.py b/src/c3nav/mesh/newapi.py index 4204499a..93d2d92e 100644 --- a/src/c3nav/mesh/newapi.py +++ b/src/c3nav/mesh/newapi.py @@ -40,7 +40,7 @@ class FirmwareBuildSchema(Schema): example="/media/firmware/012345/firmware.bin", description="download URL for the build binary", ) # todo: downlaod differently? - boards: set[BoardType] = APIField( + boards: list[BoardType] = APIField( description="set of boards that this build is compatible with", example={BoardType.C3NAV_LOCATION_PCB_REV_0_2.name, } )