jesper-raemaekers / python-polarion

A Python package to access the Polarion WSDL API.
MIT License
57 stars 35 forks source link

Fix minor typo #89

Closed ajahraus closed 2 years ago

ajahraus commented 2 years ago
new_task = project..createWorkitem('task', new_workitem_fields={'title': 'New title'})

should read

new_task = project.createWorkitem('task', new_workitem_fields={'title': 'New title'})
jesper-raemaekers commented 2 years ago

Thanks