Skip to content

Commit

Permalink
Update release version
Browse files Browse the repository at this point in the history
  • Loading branch information
hannalee2 committed Sep 18, 2024
1 parent ef485bf commit 50fcbc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion parallax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import os

__version__ = "0.37.24"
__version__ = "0.37.25"

# allow multiple OpenMP instances
os.environ["KMP_DUPLICATE_LIB_OK"] = "True"
6 changes: 3 additions & 3 deletions parallax/probe_calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __init__(self, model, stage_listener):
self.df = None
self.inliers = []
self.stage = None

"""
self.threshold_min_max = 250
self.threshold_min_max_z = 100
self.LR_err_L2_threshold = 200
Expand All @@ -84,13 +84,13 @@ def __init__(self, model, stage_listener):
[0.0, 0.0, 0.0, 0.0],
]
)
"""

self.model_LR, self.transM_LR, self.transM_LR_prev = None, None, None
self.origin, self.R, self.scale = None, None, np.array([1, 1, 1])
self.avg_err = None
self.last_row = None
self._create_file()

def reset_calib(self, sn=None):
"""
Resets calibration to its initial state, clearing any stored min and max values.
Expand Down

0 comments on commit 50fcbc7

Please sign in to comment.