from stanfordnlp.server import CoreNLPClientimport osos.environ["CORENLP_HOME"] = r'C:\Users\Shreyans\Downloads\stanford-ner-2018-10-16\stanford-ner-2018-10-16'
text = "Chris Manning is a nice person. Chris wrote a simple sentence. He also gives oranges to people."
client = CoreNLPClient(annotators=['tokenize','ssplit','pos','lemma','ner','depparse','coref'], timeout=30000, memory='8G')TypeError: super(type, obj): obj must be an instance or subtype of type