arkmartov commited on
Commit
bb61482
1 Parent(s): ba3edc4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ def Print(logits, dictionary):
29
  idx += 1
30
 
31
  def filter(title, abstract):
32
- if len(title) < 10 and (len(abstract) > 0 and len(abstract) < 20):
33
  st.markdown("Хммм... Вы точно не ошиблись? Слишком маленькое название или описание.")
34
  return False
35
  return True
 
29
  idx += 1
30
 
31
  def filter(title, abstract):
32
+ if len(title) < 10 or (len(abstract) > 0 and len(abstract) < 20):
33
  st.markdown("Хммм... Вы точно не ошиблись? Слишком маленькое название или описание.")
34
  return False
35
  return True