Skip to content

Commit 353540b

Browse files
committed
Fix pre-commit errors
1 parent b7bcacd commit 353540b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/python_be.cc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2426,10 +2426,9 @@ TRITONBACKEND_ModelInstanceReady(TRITONBACKEND_ModelInstance* instance)
24262426

24272427
if (!instance_state->Stub()->StubActive()) {
24282428
return TRITONSERVER_ErrorNew(
2429-
TRITONSERVER_ERROR_INTERNAL,
2430-
(std::string("Stub process '") + instance_state->Name() +
2431-
"' is not alive")
2432-
.c_str());
2429+
TRITONSERVER_ERROR_INTERNAL, (std::string("Stub process '") +
2430+
instance_state->Name() + "' is not alive")
2431+
.c_str());
24332432
}
24342433

24352434
if (!instance_state->IsStubProcessAlive()) {

0 commit comments

Comments
 (0)