Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
def help_():
help = []
help.append("You start by greeting me (otherwise I wont reply) and after that you can type in your question and click the send button")
help.append("I will have to perform a search depending on your question.")
help.append("I cannot take too long to reply otherwise that means")
help.append("that there is a problem and you will need to contact the technical team to fix me")
help.append("If you have any problems please don’t hesitate to email the tech team to fix me: D3@uni.coventy.ac.uk.")
help.append("If it doesn't work.")
help.append("Try running it either in Idle 64-bit or 32-bit. ")
help.append("Also do: pip install six pip install pypiwin32 pip install pyomo if pip is not recognised - google it")
help_resp =""
for word in help:
help_resp += word + "\n"
return help_resp