Skip to content

Commit

Permalink
Turn off clang-format around some lines
Browse files Browse the repository at this point in the history
  • Loading branch information
szhan committed Oct 6, 2023
1 parent 8442799 commit 9c97c11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/_tskitmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -13259,12 +13259,12 @@ LsHmm_forward_matrix(LsHmm *self, PyObject *args)
= tsk_ls_hmm_forward(self->ls_hmm, PyArray_DATA(haplotype_array),
compressed_matrix->compressed_matrix, TSK_NO_INIT);
Py_END_ALLOW_THREADS
// clang-format on
if (err != 0)
if (err != 0)
{
handle_library_error(err);
goto out;
}
// clang-format on
ret = Py_BuildValue("");
out:
Py_XDECREF(haplotype_array);
Expand Down

0 comments on commit 9c97c11

Please sign in to comment.