Add being keyword for incorporation

This commit is contained in:
Vivek Teega 2019-02-15 22:34:05 +05:30
parent e3cd9f3abc
commit 4b951bb12f

View File

@ -15,7 +15,7 @@ def isTransfer(text):
def isIncorp(text):
wordlist = ['incorporate','create','start'] # keep everything lowercase
wordlist = ['incorporate','create','start', 'begin'] # keep everything lowercase
textList = text.split(' ')
for word in wordlist:
if word in textList: