Skip to content

Commit

Permalink
Fix pep8 issue
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Avery <[email protected]>
  • Loading branch information
psavery committed Sep 30, 2024
1 parent 5a00870 commit 59dbe5b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hexrd/fitting/calibration/structureless.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,10 @@ def tth_correction(self) -> dict:
for det_name, meas_xy in rng.items():
# !!! sd has ref to detector so is updated
sd = self.tth_distortion[det_name]
tth_corr = sd.apply(meas_xy, return_nominal=False)[:, 0]
tth_corr = sd.apply(
meas_xy,
return_nominal=False,
)[:, 0]
corr_dict[det_name] = tth_corr
corr_list.append(corr_dict)

Expand Down

0 comments on commit 59dbe5b

Please sign in to comment.