From d83e0755b4359789929e36bd779ee3a0c5028fee Mon Sep 17 00:00:00 2001 From: TranBrian10 Date: Tue, 8 May 2018 13:42:58 -0400 Subject: [PATCH] removed the python 3 function annotation --- PythonClient/AirSimClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PythonClient/AirSimClient.py b/PythonClient/AirSimClient.py index 4b73733a2e..bb6d0c9240 100644 --- a/PythonClient/AirSimClient.py +++ b/PythonClient/AirSimClient.py @@ -527,7 +527,7 @@ def hover(self): # query vehicle state - def getMultirotorState(self) -> MultirotorState: + def getMultirotorState(self): return MultirotorState.from_msgpack(self.client.call('getMultirotorState')) def getPosition(self): return Vector3r.from_msgpack(self.client.call('getPosition'))