We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab3dcc commit 631bcf3Copy full SHA for 631bcf3
src/labthings_fastapi/thing_slots.py
@@ -215,7 +215,7 @@ def _pick_things(
215
if not isinstance(things[t], self.thing_type):
216
raise ThingSlotError(f"{t} is the wrong type")
217
return [things[t] for t in target]
218
- msg = "The target specified for a ThingSlot ({target}) has the wrong "
+ msg = f"The target specified for a ThingSlot ({target}) has the wrong "
219
msg += "type. See ThingSlot.connect() docstring for details."
220
raise TypeError(msg)
221
0 commit comments