diff --git a/reciprocalspaceship/dataset.py b/reciprocalspaceship/dataset.py index bd6e5db5..95c20c7a 100644 --- a/reciprocalspaceship/dataset.py +++ b/reciprocalspaceship/dataset.py @@ -12,7 +12,6 @@ apply_to_hkl, bin_by_percentile, canonicalize_phases, - compute_dHKL, compute_structurefactor_multiplicity, from_structurefactor, hkl_to_asu, @@ -786,7 +785,7 @@ def compute_dHKL(self, inplace=False): inplace : bool Whether to add the column in place or return a copy """ - dHKL = compute_dHKL(self.get_hkls(), self.cell) + dHKL = self.cell.calculate_d_array(self.get_hkls()) self["dHKL"] = DataSeries(dHKL, dtype="R", index=self.index) return self diff --git a/renovate.json b/renovate.json index 46e3bf77..981433ba 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,6 @@ { "extends": ["config:base", ":disableDependencyDashboard"], - "packageRules": [ + "packageRules": [ { "updateTypes": ["major", "minor", "patch", "digest", "bump"], "addLabels": ["version"] } ] }