Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lirshindalman committed Oct 30, 2024
1 parent 655d018 commit 66fdc4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install pipenv
run: |
python -m pip install --no-cache-dir --upgrade pipenv
if [ '${{ matrix.python }}' == '3.12' ]; then
# needed for numpy
python -m pip install --no-cache-dir --upgrade pipenv==2024.0.3
else
python -m pip install --no-cache-dir --upgrade pipenv
fi
- name: Install dependencies
run: |
# remove venv, if exists
Expand Down
1 change: 0 additions & 1 deletion checkov/common/graph/graph_builder/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def run_function_multithreaded(

def filter_sub_keys(key_list: list[str]) -> list[str]:
filtered_key_list = []

for key in key_list:
if not any(other_key != key and other_key.startswith(key) for other_key in key_list) and is_include_dup_dynamic(key, key_list):
filtered_key_list.append(key)
Expand Down

0 comments on commit 66fdc4d

Please sign in to comment.