(taskId: number)
| 32 | } |
| 33 | |
| 34 | export function createTaskNotFoundError(taskId: number): JsonHTTPResponseWithMessage { |
| 35 | return new JsonHTTPResponseWithMessage( |
| 36 | `Task ${taskId} not found`, |
| 37 | 404 |
| 38 | ); |
| 39 | } |
| 40 | |
| 41 | export function deepCloneDict(originalDict: any): any { |
| 42 | if (!isObject(originalDict)) { |
no outgoing calls
no test coverage detected