carla-simulator / leaderboard

CARLA Autonomous Driving leaderboard
MIT License
156 stars 76 forks source link

local variable 'leaderboard_evaluator' referenced before assignment #160

Open dinuransika opened 8 months ago

dinuransika commented 8 months ago

image I get the above error when trying to run the run_evaluation.sh. When I wrap the client.get_trafficmanager(int(args.trafficManagerPort)) in a try catch block like this I get the following error.

try:
      self.traffic_manager = self.client.get_trafficmanager(int(args.trafficManagerPort))
  except Exception as e:
      print(e)

image Can someone tell me what's wrong there?