pkiage commited on
Commit
cadafda
1 Parent(s): 9926223

fix: model_name_short literal string interpolation

Browse files
Files changed (1) hide show
  1. src/models/util_test.py +1 -1
src/models/util_test.py CHANGED
@@ -42,7 +42,7 @@ def make_tests_view(
42
  train on each fold suggests performance will be stable."
43
  )
44
 
45
- st.write('{model_name_short} cross validation test:')
46
 
47
  stcol_seed, stcol_eval_metric = st.columns(2)
48
 
 
42
  train on each fold suggests performance will be stable."
43
  )
44
 
45
+ st.write(f'{model_name_short} cross validation test:')
46
 
47
  stcol_seed, stcol_eval_metric = st.columns(2)
48