Hellisotherpeople commited on
Commit
7ba3b15
β€’
1 Parent(s): f42affe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -67,7 +67,9 @@ with st.spinner("Please wait while the model loads:"):
67
  def isPalindrome(s):
68
  return s == s[::-1]
69
 
70
- rhopalism_len = length_constraint
 
 
71
  alphabet_string = string.ascii_lowercase
72
 
73
 
 
67
  def isPalindrome(s):
68
  return s == s[::-1]
69
 
70
+
71
+ if mode == "rhopalism":
72
+ rhopalism_len = length_constraint
73
  alphabet_string = string.ascii_lowercase
74
 
75