From 64a4aae08b62c930e195814b66c3c063feeacfa1 Mon Sep 17 00:00:00 2001 From: grimoire Date: Sun, 24 Apr 2022 17:03:56 +0800 Subject: [PATCH] typo-fix --- csrc/apis/python/pose_detector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csrc/apis/python/pose_detector.cpp b/csrc/apis/python/pose_detector.cpp index 36e024f1a1..da1af9af2d 100644 --- a/csrc/apis/python/pose_detector.cpp +++ b/csrc/apis/python/pose_detector.cpp @@ -14,7 +14,7 @@ class PyPoseDedector { auto status = mmdeploy_pose_detector_create_by_path(model_path, device_name, device_id, &handle_); if (status != MM_SUCCESS) { - throw std::runtime_error("failed to create pose_detedtor"); + throw std::runtime_error("failed to create pose_detector"); } } py::list Apply(const std::vector &imgs, const std::vector> &_boxes) {