Skip to content

Commit

Permalink
Get rid of obsolete soma.subprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Mar 6, 2024
1 parent 99c3a47 commit bd83267
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions capsul/pipeline/pipeline_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
import dataclasses
import json
import os
import subprocess
import sys
import tempfile

import soma.subprocess
from populse_db import json_decode, json_encode
from soma.controller import Any, Controller, undefined

Expand Down Expand Up @@ -612,7 +612,7 @@ def save_dot_image(
formats = {"txt": "plain"}
format = formats.get(ext, ext)
cmd = ["dot", "-T%s" % ext, "-o", filename, dot_filename]
soma.subprocess.check_call(cmd)
subprocess.check_call(cmd)
os.unlink(dot_filename)


Expand Down

0 comments on commit bd83267

Please sign in to comment.