Spaces:
Runtime error
Runtime error
Commit
·
4975afb
1
Parent(s):
8e5a321
Fix that weirdly failing test
Browse files- decider_utils.py +3 -0
decider_utils.py
CHANGED
@@ -133,6 +133,9 @@ def special_case_is_magic(text):
|
|
133 |
|
134 |
|
135 |
def special_case_is_action_lethal(text):
|
|
|
|
|
|
|
136 |
text_l = text.lower()
|
137 |
|
138 |
is_negotiation = False
|
|
|
133 |
|
134 |
|
135 |
def special_case_is_action_lethal(text):
|
136 |
+
if len(text.strip()) <= 3:
|
137 |
+
return NO
|
138 |
+
|
139 |
text_l = text.lower()
|
140 |
|
141 |
is_negotiation = False
|