Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

import os
import subprocess
import subprocess # nosec B404
import tarfile
from datetime import datetime
from shutil import copyfile, copytree, rmtree
Expand Down
2 changes: 1 addition & 1 deletion tools/commit_slider/commit_slider.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) 2018-2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

import subprocess
import subprocess # nosec B404
import os
import shutil
import sys
Expand Down
2 changes: 1 addition & 1 deletion tools/commit_slider/utils/e2e_preparator.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
try:
import yaml
except:
import subprocess
import subprocess # nosec B404
import sys
p = subprocess.Popen('{} -m pip install pyyaml'.format(
sys.executable
Expand Down
2 changes: 1 addition & 1 deletion tools/commit_slider/utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import shutil
import os
import sys
import subprocess
import subprocess # nosec B404
from enum import Enum
import re
import json
Expand Down
Loading