(env: Env, country: AnyStr, **kwargs)
| 273 | |
| 274 | |
| 275 | def step_routing_world(env: Env, country: AnyStr, **kwargs): |
| 276 | run_gen_tool_with_recovery_country( |
| 277 | env, |
| 278 | env.gen_tool, |
| 279 | out=env.get_subprocess_out(country), |
| 280 | err=env.get_subprocess_out(country), |
| 281 | data_path=env.paths.mwm_path, |
| 282 | user_resource_path=env.paths.user_resource_path, |
| 283 | output=country, |
| 284 | world_roads_path=env.paths.world_roads_path, |
| 285 | **kwargs, |
| 286 | ) |
| 287 | |
| 288 | |
| 289 | def step_index(env: Env, country: AnyStr, **kwargs): |
nothing calls this directly
no test coverage detected