Commit 41a8c57e authored by Joel Collins's avatar Joel Collins
Browse files

Fixed broken scan representation

parent 671b356e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ class TaskAPI(MethodView):
            return abort(404)  # 404 Not Found

        # Return task state
        return jsonify(task.state)
        return jsonify(task)

    def delete(self, task_id):
        """