Skip to content

Commit

Permalink
fixing local pickle error
Browse files Browse the repository at this point in the history
  • Loading branch information
rsexton2 committed Mar 2, 2024
1 parent 4843c8c commit 1ce13ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basicrta/gibbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def collect_results(self, nproc=1):
with (Pool(nproc, initializer=tqdm.set_lock,
initargs=(Lock(),)) as p):
try:
for _ in tqdm(p.istarmap(self._collect_res, dirs),
for _ in tqdm(p.starmap(self._collect_res, dirs),
total=len(dirs), position=0,
desc='overall progress'):
pass
Expand Down

0 comments on commit 1ce13ba

Please sign in to comment.