Skip to content

Commit 82124c9

Browse files
authored
Properly marshal extensions list
1 parent 9490527 commit 82124c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/labthings/default_views/extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ def get(self):
1717
Returns a list of Extension representations, including basic documentation.
1818
Describes server methods, web views, and other relevant Lab Things metadata.
1919
"""
20-
return registered_extensions().values() or []
20+
return self.schema.dump(registered_extensions().values() or [])

0 commit comments

Comments
 (0)