()
| 48 | |
| 49 | |
| 50 | def find_weather_presets(): |
| 51 | presets = [x for x in dir(carla.WeatherParameters) if re.match('[A-Z].+', x)] |
| 52 | return [(getattr(carla.WeatherParameters, x), x) for x in presets] |
| 53 | |
| 54 | |
| 55 | def list_options(client): |
no outgoing calls
no test coverage detected