Skip to content

Commit d84ae58

Browse files
author
Joel Collins
committed
Fixed applying semtype string
1 parent e1f4ca8 commit d84ae58

File tree

1 file changed

+1
-1
lines changed
  • src/labthings/server/semantics

1 file changed

+1
-1
lines changed

src/labthings/server/semantics/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ def __init__(self, schema):
1212

1313
def __call__(self, viewcls):
1414
# Use the class name as the semantic type
15-
viewcls.Semtype = self.__class__.__name__
15+
viewcls.semtype = self.__class__.__name__
1616
viewcls.schema = self.schema
1717
return viewcls

0 commit comments

Comments
 (0)