Skip to content

Commit 9b116fc

Browse files
committed
Fix mypy ignore
I am confused by this - it's possible `dmypy` confused me into changing it, but I have now changed it back and it's passing mypy. This line should be fixed by #258 in any case.
1 parent a0591c0 commit 9b116fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/labthings_fastapi/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def response(self) -> InvocationModel:
229229
return self.action.invocation_model( # type: ignore[attr-defined]
230230
status=self.status,
231231
id=self.id,
232-
action=self.thing.path + self.action.name, # type: ignore[call-overload]
232+
action=self.thing.path + self.action.name, # type: ignore[attr-defined]
233233
href=URLFor("action_invocation", id=self.id),
234234
timeStarted=self._start_time,
235235
timeCompleted=self._end_time,

0 commit comments

Comments
 (0)