Skip to content
Snippets Groups Projects
Unverified Commit 0d8269de authored by Abhishek Kadian's avatar Abhishek Kadian Committed by GitHub
Browse files

Fix docstring (#73)

parent 1193c7d9
No related branches found
No related tags found
No related merge requests found
......@@ -282,12 +282,12 @@ class StaticPointGoalSensor(habitat.Sensor):
class HeadingSensor(habitat.Sensor):
"""
Sensor for observing the agent's heading in the global coordinate frame.
Sensor for observing the agent's heading in the global coordinate frame.
Args:
sim: reference to the simulator for calculating task observations.
config: config for the sensor.
"""
Args:
sim: reference to the simulator for calculating task observations.
config: config for the sensor.
"""
def __init__(self, sim: Simulator, config: Config):
self._sim = sim
......@@ -318,12 +318,12 @@ class HeadingSensor(habitat.Sensor):
class ProximitySensor(habitat.Sensor):
"""
Sensor for observing the distance to the closest obstacle
Sensor for observing the distance to the closest obstacle
Args:
sim: reference to the simulator for calculating task observations.
config: config for the sensor.
"""
Args:
sim: reference to the simulator for calculating task observations.
config: config for the sensor.
"""
def __init__(self, sim, config):
self._sim = sim
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment