Grosy commited on
Commit
1eec1b0
1 Parent(s): 4e8931c

fixed typo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ from sentence_transformers import util
9
 
10
  @st.cache(hash_funcs={list: lambda _: None})
11
  def load_raw_sentences(filename):
12
- fitered_data = []
13
  with open(filename) as f:
14
  raw_data = f.readlines()
15
  for line in raw_data:
9
 
10
  @st.cache(hash_funcs={list: lambda _: None})
11
  def load_raw_sentences(filename):
12
+ filtered_data = []
13
  with open(filename) as f:
14
  raw_data = f.readlines()
15
  for line in raw_data: