Skip to content

Commit

Permalink
[PyOV] Fix getting of cache_encryption_callbacks propertys
Browse files Browse the repository at this point in the history
  • Loading branch information
akuporos committed Jan 23, 2025
1 parent 5469038 commit 78cdc38
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bindings/python/src/pyopenvino/utils/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ py::object from_ov_any(const ov::Any& any) {
return py::cast(luid_stream.str());
} else if (any.is<ov::device::PCIInfo>()) {
return py::cast(any.as<ov::device::PCIInfo>());
} else if (any.is<ov::cache_encryption_callbacks>()) {
return py::cast(any.as<ov::cache_encryption_callbacks>());
// Custom FrontEnd Types
} else if (any.is<ov::frontend::type::List>()) {
return py::cast(any.as<ov::frontend::type::List>());
Expand Down

0 comments on commit 78cdc38

Please sign in to comment.