From bb351100b88ef0688b626bfdf9662cb80c926c9f Mon Sep 17 00:00:00 2001 From: Lauraschwarz Date: Tue, 22 Oct 2024 15:49:11 +0100 Subject: [PATCH] pre-commit changes again --- examples/convert_file_formats.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/examples/convert_file_formats.py b/examples/convert_file_formats.py index 6079866c..ef819ec6 100644 --- a/examples/convert_file_formats.py +++ b/examples/convert_file_formats.py @@ -100,7 +100,7 @@ def rename_keypoints(ds, rename_dict): # Let's create a list of keypoints to delete. # to delete modify this list accordingly -kps_to_delete = ["tail_end"] +kps_to_delete = ["tailend"] # %% @@ -131,14 +131,7 @@ def delete_keypoints(ds, delete_keypoints): # Again create a list with the # Let's list the keypoints in the desired order. -ordered_keypoints = [ - "snout", - "right_ear", - "left_ear", - "centre", - "tail_end", - "tail_base", -] +ordered_keypoints = ["nose", "earR", "earL", "middle", "tailbase"] # %%