Skip to content

Commit

Permalink
[chore] Commit clang-format autocorrects
Browse files Browse the repository at this point in the history
  • Loading branch information
github-lint-actions[bot] committed Dec 19, 2024
1 parent 933e190 commit 77309e0
Show file tree
Hide file tree
Showing 4 changed files with 271 additions and 272 deletions.
2 changes: 1 addition & 1 deletion python/engine/PythonEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ int PythonEngine::numberOfArguments(ScriptObject& methodObject, std::string_view
}
} else if (PyFunction_Check(method)) {
// Shouldn't enter this block here
if (auto * code = PyFunction_GetCode(method)) {
if (auto* code = PyFunction_GetCode(method)) {
// cppcheck-suppress cstyleCast
const auto* co = (PyCodeObject*)code;
numberOfArguments = co->co_argcount;
Expand Down
Loading

0 comments on commit 77309e0

Please sign in to comment.