Skip to content

Commit

Permalink
fixed indentation bug in Python client
Browse files Browse the repository at this point in the history
  • Loading branch information
ppueyor committed Aug 12, 2021
1 parent 35b8009 commit cdcb916
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions PythonClient/airsim/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -762,9 +762,8 @@ def simGetGroundTruthEnvironment(self, vehicle_name = ''):
"""
env_state = self.client.call('simGetGroundTruthEnvironment', vehicle_name)
return EnvironmentState.from_msgpack(env_state)
simGetGroundTruthEnvironment.__annotations__ =
{
'return' : EnvironmentState}
simGetGroundTruthEnvironment.__annotations__ = {'return': EnvironmentState}


#sensor APIs
def getImuData(self, imu_name = '', vehicle_name = ''):
Expand Down

0 comments on commit cdcb916

Please sign in to comment.