Skip to content

Commit

Permalink
Remove import pprint
Browse files Browse the repository at this point in the history
  • Loading branch information
wvangeit committed Dec 23, 2024
1 parent 8a97bfe commit 88ec502
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docker_scripts/parallelrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import multiprocessing
import os
import pathlib as pl
import pprint
import tempfile
import time
import traceback
Expand Down Expand Up @@ -511,7 +510,7 @@ async def async_map_func(batch_with_uuid, trial_number=1):
)
set_batch_status(batch, "FAILURE")
# raise error
except Exception as error:
except Exception:
if trial_number >= self.settings.max_job_trials:
logger.info(
f"Batch {batch} failed with error ("
Expand Down

0 comments on commit 88ec502

Please sign in to comment.