Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 5f0e03c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 81e121f commit 5f0e03c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/dynamic_graph/entity-py.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ bp::object executeCmd(bp::tuple args, bp::dict) {
8484
std::vector<Value> values;
8585
values.reserve(command.valueTypes().size());
8686
for (bp::ssize_t i = 1; i < bp::len(args); ++i)
87-
values.push_back(convert::toValue
88-
(args[i],
89-
command.valueTypes()
90-
[static_cast<std::vector<Value>::size_type>(i - 1)]));
87+
values.push_back(convert::toValue(
88+
args[i],
89+
command
90+
.valueTypes()[static_cast<std::vector<Value>::size_type>(i - 1)]));
9191
command.setParameterValues(values);
9292
return convert::fromValue(command.execute());
9393
}

0 commit comments

Comments
 (0)