Lynten / stanford-corenlp

Python wrapper for Stanford CoreNLP.
MIT License
919 stars 200 forks source link

Corrected 'coref' function request arguments #67

Open DanielJamieson opened 5 years ago

DanielJamieson commented 5 years ago

I corrected the function arguments for the '_request(...)' call within the 'coref' function. This was done by adding the url as the first parameter.

AKA

This: r_dict = self._request('coref', text)

To this: r_dict = self._request(self.url, 'coref', text)

On line 218