From faa7bb01387184a405bee8fa99113da2d55c7ba4 Mon Sep 17 00:00:00 2001 From: namdre Date: Tue, 2 Jun 2020 07:54:30 +0200 Subject: [PATCH] fixed docstring refs #2 --- tools/traci/_simulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/traci/_simulation.py b/tools/traci/_simulation.py index a48006196007..965fed7a6816 100644 --- a/tools/traci/_simulation.py +++ b/tools/traci/_simulation.py @@ -343,7 +343,7 @@ def getBusStopWaiting(self, stopID): return self._getUniversal(tc.VAR_BUS_STOP_WAITING, stopID) def getBusStopWaitingIDList(self, stopID): - """getBusStopWaiting() -> integer + """getBusStopWaiting() -> list(string) Get the IDs of waiting persons at the named bus stop. """ return self._getUniversal(tc.VAR_BUS_STOP_WAITING_IDS, stopID)