Skip to content

Commit 9b3e120

Browse files
authored
Fixed error: expression result unused (openvinotoolkit#8862)
1 parent e76fc14 commit 9b3e120

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

src/bindings/python/src/pyopenvino/graph/function.cpp

+17-17
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ void regclass_graph_Function(py::module m) {
133133
}),
134134
py::arg("results"),
135135
py::arg("parameters"),
136-
py::arg("name") = ""),
136+
py::arg("name") = "",
137137
R"(
138138
Create user-defined Function which is a representation of a model
139139
@@ -147,7 +147,7 @@ void regclass_graph_Function(py::module m) {
147147
148148
name : str
149149
String to set as function's friendly name.
150-
)";
150+
)");
151151

152152
function.def(py::init([](const ov::OutputVector& results,
153153
const std::vector<std::shared_ptr<ov::Node>>& nodes,
@@ -160,8 +160,8 @@ void regclass_graph_Function(py::module m) {
160160
py::arg("results"),
161161
py::arg("sinks"),
162162
py::arg("parameters"),
163-
py::arg("name") = ""),
164-
R"(
163+
py::arg("name") = "",
164+
R"(
165165
Create user-defined Function which is a representation of a model
166166
167167
Parameters
@@ -177,7 +177,7 @@ void regclass_graph_Function(py::module m) {
177177
178178
name : str
179179
String to set as function's friendly name.
180-
)";
180+
)");
181181
function.def(py::init([](const ov::ResultVector& results,
182182
const std::vector<std::shared_ptr<ov::Node>>& nodes,
183183
const ov::ParameterVector& parameters,
@@ -191,8 +191,8 @@ void regclass_graph_Function(py::module m) {
191191
py::arg("sinks"),
192192
py::arg("parameters"),
193193
py::arg("variables"),
194-
py::arg("name") = ""),
195-
R"(
194+
py::arg("name") = "",
195+
R"(
196196
Create user-defined Function which is a representation of a model
197197
198198
Parameters
@@ -211,7 +211,7 @@ void regclass_graph_Function(py::module m) {
211211
212212
name : str
213213
String to set as function's friendly name.
214-
)";
214+
)");
215215

216216
function.def(py::init([](const ov::OutputVector& results,
217217
const std::vector<std::shared_ptr<ov::Node>>& nodes,
@@ -226,8 +226,8 @@ void regclass_graph_Function(py::module m) {
226226
py::arg("sinks"),
227227
py::arg("parameters"),
228228
py::arg("variables"),
229-
py::arg("name") = ""),
230-
R"(
229+
py::arg("name") = "",
230+
R"(
231231
Create user-defined Function which is a representation of a model
232232
233233
Parameters
@@ -246,7 +246,7 @@ void regclass_graph_Function(py::module m) {
246246
247247
name : str
248248
String to set as function's friendly name.
249-
)";
249+
)");
250250

251251
function.def(py::init([](const ov::ResultVector& results,
252252
const ov::ParameterVector& parameters,
@@ -258,8 +258,8 @@ void regclass_graph_Function(py::module m) {
258258
py::arg("results"),
259259
py::arg("parameters"),
260260
py::arg("variables"),
261-
py::arg("name") = ""),
262-
R"(
261+
py::arg("name") = "",
262+
R"(
263263
Create user-defined Function which is a representation of a model
264264
265265
Parameters
@@ -275,7 +275,7 @@ void regclass_graph_Function(py::module m) {
275275
276276
name : str
277277
String to set as function's friendly name.
278-
)";
278+
)");
279279

280280
function.def(py::init([](const ov::OutputVector& results,
281281
const ov::ParameterVector& parameters,
@@ -287,8 +287,8 @@ void regclass_graph_Function(py::module m) {
287287
py::arg("results"),
288288
py::arg("parameters"),
289289
py::arg("variables"),
290-
py::arg("name") = ""),
291-
R"(
290+
py::arg("name") = "",
291+
R"(
292292
Create user-defined Function which is a representation of a model
293293
294294
Parameters
@@ -304,7 +304,7 @@ void regclass_graph_Function(py::module m) {
304304
305305
name : str
306306
String to set as function's friendly name.
307-
)";
307+
)");
308308

309309
function.def("validate_nodes_and_infer_types", &ov::Function::validate_nodes_and_infer_types);
310310

0 commit comments

Comments
 (0)