update action, property, and setting syntax for labthings-fastapi 0.0.12

This commit is contained in:
Julian Stirling 2025-12-14 11:52:07 +00:00
parent bbbfaf8602
commit 5eea78cac7
14 changed files with 139 additions and 192 deletions

View file

@ -63,7 +63,7 @@ def test_override_base_movement():
"""
class BadStage1(BaseStage):
@lt.thing_action
@lt.action
def move_relative(
self,
cancel: lt.deps.CancelHook,
@ -76,7 +76,7 @@ def test_override_base_movement():
BadStage1()
class BadStage2(BaseStage):
@lt.thing_action
@lt.action
def move_absolute(
self,
cancel: lt.deps.CancelHook,