Skip to content

Commit

Permalink
Basic formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mprib committed Sep 15, 2024
1 parent 16d4644 commit e1de1b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# %%

import caliscope.logger
from pathlib import Path
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion tests/test_configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_configurator():

# create new point estimates with newly saved data
point_estimates_reloaded = config.get_point_estimates()
assert isinstance(point_estimates_reloaded,PointEstimates)
assert isinstance(point_estimates_reloaded, PointEstimates)

assert point_estimates_are_equal(point_estimates, point_estimates_reloaded)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_metarig_config_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_metarig_config_generation():
# make sure all measures are accounted for and sensible
for measure, points in tracker.metarig_symmetrical_measures.items():
assert measure in check_autorig_config.keys()
assert isinstance(check_autorig_config[measure],float)
assert isinstance(check_autorig_config[measure], float)

for measure, points in tracker.metarig_bilateral_measures.items():
assert measure in check_autorig_config.keys()
Expand Down
1 change: 1 addition & 0 deletions tests/test_no_video_calibrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

logger = caliscope.logger.get(__name__)


def test_no_video_calibrate():
"""
Saving out of video may be maxing system resources when high res/many cameras.
Expand Down

0 comments on commit e1de1b8

Please sign in to comment.