Skip to content

Commit

Permalink
BUG: Import joblib modules in cluster outlier removal script
Browse files Browse the repository at this point in the history
Import `joblib` modules in cluster outlier removal script.

Fixes:
```
File /bin/wm_cluster_remove_outliers.py, line 256, in main
  logtrs = Parallel(n_jobs=number_of_jobs, verbose=0)(
NameError: name 'Parallel' is not defined
```

Inadvertently removed in commit f66b337.
  • Loading branch information
jhlegarreta committed Jan 2, 2024
1 parent 62c7673 commit ea189e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bin/wm_cluster_remove_outliers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import glob
import os
import shutil
from joblib import Parallel, delayed

import numpy as np
import vtk
Expand Down

0 comments on commit ea189e9

Please sign in to comment.