From f9ce18c725e3639fdaebb21f39633812164f01b9 Mon Sep 17 00:00:00 2001 From: Shintaro Katayama Date: Sat, 17 May 2025 23:56:39 +0300 Subject: [PATCH] fix the returned value type inconsistency of get_altered_block_start_loc() --- meth_phaser_post_processing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meth_phaser_post_processing b/meth_phaser_post_processing index 57cce0d..324df76 100755 --- a/meth_phaser_post_processing +++ b/meth_phaser_post_processing @@ -152,7 +152,7 @@ def get_altered_block_start_loc(final_blocks, original_block_start_loc): for i in final_blocks: if original_block_start_loc <= i[1] and original_block_start_loc >= i[0]: return str(i[0]) - return -1 + return str(-1) def get_all_final_blocks_dict(block_relationship_df):