From 1c7b53c66a2be3e31026ab66c505d33019c5c8eb Mon Sep 17 00:00:00 2001 From: "Delia-Florenta Manea (manead)" Date: Mon, 20 Nov 2017 12:43:16 +0000 Subject: [PATCH] Update determineUserInput.py --- determineUserInput.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/determineUserInput.py b/determineUserInput.py index 17a535c..c05a70e 100644 --- a/determineUserInput.py +++ b/determineUserInput.py @@ -18,7 +18,7 @@ def determineUserInput(sentence): sentenceParse = sentence.split() if (sentenceParse[0] == "i" and len(sentenceParse) > 1): - if (sentenceParse[1] in ["m","am", "like", "enjoy", "want", "love"]): + if (sentenceParse[1] in ["m","am"]): sentenceParse.insert(0, " ".join(sentenceParse[0:2])) if sentenceParse[0] in questionStarters: # ------------- execute the "what is" code here ---------------