Skip to content

Commit

Permalink
fix bug in calibrate
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdaloop committed Aug 3, 2019
1 parent 9c5b23f commit 9175bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anipose/calibrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def process_session(config, session_path):

cam_names = sorted(cam_names)

video_list = [cam_videos[cname] for cname in cam_names]
video_list = [sorted(cam_videos[cname]) for cname in cam_names]

outname_base = 'calibration.toml'
outdir = os.path.join(calibration_path, pipeline_calibration_results)
Expand Down

0 comments on commit 9175bba

Please sign in to comment.