derek-thomas HF staff commited on
Commit
86f872b
1 Parent(s): 8c4b8df

Make bold, not italic

Browse files
Files changed (1) hide show
  1. utilities.py +3 -3
utilities.py CHANGED
@@ -254,9 +254,9 @@ def process_personalized_collection(requestRetention, w):
254
  t_history += f',{int(next_t)}'
255
  d_history += f',{difficulty}'
256
  r_history += f",3"
257
- rating_markdown.append(f"*rating history*: {r_history}")
258
- rating_markdown.append(f"*interval history*: {t_history}")
259
- rating_markdown.append(f"*difficulty history*: {d_history}\n")
260
  rating_markdown = '\n\n'.join(rating_markdown)
261
  return my_collection, rating_markdown
262
 
 
254
  t_history += f',{int(next_t)}'
255
  d_history += f',{difficulty}'
256
  r_history += f",3"
257
+ rating_markdown.append(f"**rating history**: {r_history}")
258
+ rating_markdown.append(f"**interval history**: {t_history}")
259
+ rating_markdown.append(f"**difficulty history**: {d_history}\n")
260
  rating_markdown = '\n\n'.join(rating_markdown)
261
  return my_collection, rating_markdown
262