If no connection available,
chatList = world.GetChatList()
returns wrong type:
Execution of line 1 column 0
Immediate execution
Traceback (most recent call last):
File "<Script Block 6>", line 1, in <module>
chatList = world.GetChatList()
TypeError: 'NoneType' object is not callable
NoneType isn't correct, it should be "None".
chatList = world.GetChatList()
returns wrong type:
Execution of line 1 column 0
Immediate execution
Traceback (most recent call last):
File "<Script Block 6>", line 1, in <module>
chatList = world.GetChatList()
TypeError: 'NoneType' object is not callable
NoneType isn't correct, it should be "None".