Skip to content

Commit

Permalink
Remove stray print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins committed Oct 4, 2024
1 parent 03fbac4 commit 44b1c12
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions xarray_ms/backend/msv2/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,11 +436,9 @@ def __init__(
with cf.ThreadPoolExecutor(max_workers=ncpus) as pool:
other_columns = ["INTERVAL"]
read_columns = set(partition_columns) | set(SORT_COLUMNS) | set(other_columns)
pstart = modtime.time()
partitions = TablePartitioner(
partition_columns, SORT_COLUMNS, other_columns + ["row"]
).partition(table.to_arrow(columns=read_columns), pool)
print(f"{modtime.time() - pstart}")
self._partitions = {}

unique_inv_fn = partial(np.unique, return_inverse=True)
Expand Down

0 comments on commit 44b1c12

Please sign in to comment.