Skip to content

Commit

Permalink
style: Automatic code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 18, 2024
1 parent 5ac7929 commit b1df219
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utils/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,9 @@ def autoprocess(
raise
except (MemoryError, OSError):
mem = get_memory() / 1024 / 1024
sys.stderr.write("\n\nERROR: Memory Exception\nRemain: %.2f GB\nYour system doesn't have enough FREE RAM to run processing!" % mem)
sys.stderr.write(
"\n\nERROR: Memory Exception\nRemain: %.2f GB\nYour system doesn't have enough FREE RAM to run processing!" % mem
)
sys.exit(1)
except Exception:
import traceback
Expand Down

0 comments on commit b1df219

Please sign in to comment.