We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f76d2d3 commit 8154106Copy full SHA for 8154106
tests/test_thing_server_interface.py
@@ -56,7 +56,7 @@ class DifferentGroupedThing(lt.Thing):
56
57
class ExampleWithSlots(lt.Thing):
58
example: ExampleThing = lt.thing_slot()
59
- dif_example: DifferentExampleThing = lt.thing_slot("diffy")
+ dif_example: DifferentExampleThing = lt.thing_slot(DIF_EXAMPLE_NAME)
60
optionally_another_example: AnotherExampleThing | None = lt.thing_slot()
61
unused_option: UnusedExampleThing | None = lt.thing_slot(None)
62
grouped_things: Mapping[str, GroupedThing] = lt.thing_slot()
0 commit comments