Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn authored Aug 7, 2024
1 parent 270d5d9 commit dac93da
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions a00_qpip/utils.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import os
import subprocess
from importlib.metadata import Distribution
from subprocess import (
PIPE,
STDOUT,
Popen,
)
from subprocess import PIPE, STDOUT, Popen
from typing import List, Union

from pkg_resources import ResolutionError
Expand Down Expand Up @@ -58,6 +54,7 @@ def run_cmd(args, description="running a system command"):
STARTUPINFO,
SW_HIDE,
)

startupinfo = STARTUPINFO()
startupinfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW
startupinfo.wShowWindow = SW_HIDE
Expand Down

0 comments on commit dac93da

Please sign in to comment.