SAP-archive / SDK-python

SAP Conversational AI official SDK for Python
MIT License
22 stars 20 forks source link

Replace 'is' with '==' and '<<' with '.append()' #1

Closed scottruona closed 8 years ago

scottruona commented 8 years ago

Comparing strings should be done with ==, rather than is. Adding elements to a list is done with the .append() method.

PaulRenvoise commented 8 years ago

Thanks for the fixes!