forgot a parenthesis

This commit is contained in:
davidpagnon 2024-09-17 23:43:04 +02:00
parent 07afe0b0fb
commit bd505fe274

View File

@ -473,7 +473,7 @@ def filter_all(config_dict):
trc_f_out = [f'{os.path.basename(t).split(".")[0]}_filt_{filter_type}.trc' for t in trc_path_in]
trc_path_out = [os.path.join(pose3d_dir, t) for t in trc_f_out]
for person_id, t_in, t_out in enumerate(zip(trc_path_in, trc_path_out)):
for person_id, (t_in, t_out) in enumerate(zip(trc_path_in, trc_path_out)):
# Read trc header
with open(t_in, 'r') as trc_file:
header = [next(trc_file) for line in range(5)]