I am using python 3.9 and I am new to pyparrot. When trying to connect to my Bebop 2 I come across the following error:
File "C:\Users\Michael\AppData\Local\Programs\Python\Python39\lib\site-packages\pyparrot\networking\wifiConnection.py", line 314, in _handshake
self.drone_ip = ipaddress.IPv4Address(self.connection_info.address).exploded
AttributeError: 'ServiceInfo' object has no attribute 'address'
The code bringing up the issue is

I have looked up which attributes should replace self.connection_info.address and tried self.connection_info.addresses, self.connection_info.addresses_by_version(), self.connection_info.parsed_addresses()
and each of those bring different errors.
Any help to resolving this issue would be great, thanks.
I am using python 3.9 and I am new to pyparrot. When trying to connect to my Bebop 2 I come across the following error:
File "C:\Users\Michael\AppData\Local\Programs\Python\Python39\lib\site-packages\pyparrot\networking\wifiConnection.py", line 314, in _handshake
self.drone_ip = ipaddress.IPv4Address(self.connection_info.address).exploded
AttributeError: 'ServiceInfo' object has no attribute 'address'
The code bringing up the issue is

I have looked up which attributes should replace
self.connection_info.addressand triedself.connection_info.addresses,self.connection_info.addresses_by_version(),self.connection_info.parsed_addresses()and each of those bring different errors.
Any help to resolving this issue would be great, thanks.