Skip to content

Commit

Permalink
fix renaming bug
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Sep 23, 2023
1 parent ae9fa5a commit 853703d
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions sed/calibrator/momentum.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,8 @@ def __init__(

self.x_column = self._config["dataframe"]["x_column"]
self.y_column = self._config["dataframe"]["y_column"]
self.corrected_x_column = self._config["dataframe"][
"corrected_x_column"
]
self.corrected_y_column = self._config["dataframe"][
"corrected_y_column"
]
self.corrected_x_column = self._config["dataframe"]["corrected_x_column"]
self.corrected_y_column = self._config["dataframe"]["corrected_y_column"]
self.kx_column = self._config["dataframe"]["kx_column"]
self.ky_column = self._config["dataframe"]["ky_column"]

Expand Down Expand Up @@ -735,7 +731,7 @@ def spline_warp_estimate(
if verbose:
print("Calulated thin spline correction based on the following landmarks:")
print(f"pouter: {self.pouter}")
if include_center:
if use_center:
print(f"pcent: {self.pcent}")

return corrected_image
Expand Down

0 comments on commit 853703d

Please sign in to comment.