File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
services/repositories/requirements Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 1- from itertools import groupby
21import numpy as np
32import streamlit as st
43
@@ -138,9 +137,6 @@ def make_a_report():
138137 )
139138
140139 if st .session_state ["chosen_test_case" ]:
141- test_case = db .test_cases .get_by_id_raw (
142- st .session_state ["chosen_test_case" ]
143- )
144140 annotations = annotations_repo .fetch_annotations_by_test_case_with_distance_to_requirement (
145141 db ,
146142 st .session_state ["chosen_test_case" ],
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ def fetch_filtered_requirements(
1212 text_content : Optional [str ] = None ,
1313 smart_search_query : Optional [str ] = None ,
1414) -> list [tuple [int , str , str ]]:
15- sql = f """
15+ sql = """
1616 SELECT
1717 Requirements.id as req_id,
1818 Requirements.external_id as req_external_id,
You can’t perform that action at this time.
0 commit comments