Hi got this error after I change from python2 to python3
line 77, in __init__
super(TelloNode, self).__init__(
TypeError: __init__() got an unexpected keyword argument 'local_cmd_client_port'
It seems like the init function of the superclass doesn't expect the local_cmd_client_port argument. The argument is coming from this snippet
super(TelloNode, self).__init__(
local_cmd_client_port=self.local_cmd_client_port,
local_vid_server_port=self.local_vid_server_port,
tello_ip=self.tello_ip,
tello_cmd_server_port=self.tello_cmd_server_port,
log=log)
Hi got this error after I change from python2 to python3
It seems like the init function of the superclass doesn't expect the local_cmd_client_port argument. The argument is coming from this snippet