Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joezuntz committed Sep 24, 2024
1 parent 8df57ea commit 90dc12d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions txpipe/diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ def run(self):
chunk_rows = "auto"

# We canonicalise the names here
cols = []
col_names = {
"psf_g1": f"{psf_prefix}g1",
"psf_T_mean": f"{psf_prefix}T_mean",
Expand All @@ -80,7 +79,7 @@ def run(self):

# We now build up the quantile values
quantile_values = {}
for new_name, old_name in cols.items():
for new_name, old_name in col_names.items():
# Create dask arrays of the columns. This loads them lazily,
# so no data is actually loaded here. Only when the "compute"
# method is called below does anything actually happen.
Expand Down

0 comments on commit 90dc12d

Please sign in to comment.