File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def add_logo():
2424 st .set_page_config (page_title = "📑 Test2Text App" , layout = "wide" , initial_sidebar_state = "auto" )
2525 add_logo ()
2626
27- annotations = st .Page ("pages/upload/annotations.py" , title = "Annotations" , icon = ":material/database_upload" )
27+ annotations = st .Page ("pages/upload/annotations.py" , title = "Annotations" , icon = ":material/database_upload: " )
2828 requirements = st .Page ("pages/upload/requirements.py" , title = "Requirements" , icon = ":material/database_upload:" )
2929 report = st .Page ("pages/report.py" , title = "Report" , icon = ":material/publish:" )
3030 visualization = st .Page ("services/visualisation/visualize_vectors.py" , title = "Visualize vectors" , icon = ":material/dataset:" )
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def trace_test_cases_to_annos(trace_files: list):
2020 st .info ("Reading trace files and inserting annotations into table..." )
2121 for i , file in enumerate (trace_files ):
2222 stringio = io .StringIO (file .getvalue ().decode ("utf-8" ))
23- reader = csv .DictReader (stringio )
23+ reader = csv .reader (stringio )
2424 current_tc = EMPTY
2525 concat_summary = EMPTY
2626 test_script = EMPTY
You can’t perform that action at this time.
0 commit comments