(env: Env, country: AnyStr, **kwargs)
| 199 | |
| 200 | |
| 201 | def step_cities_ids_world(env: Env, country: AnyStr, **kwargs): |
| 202 | run_gen_tool_with_recovery_country( |
| 203 | env, |
| 204 | env.gen_tool, |
| 205 | out=env.get_subprocess_out(country), |
| 206 | err=env.get_subprocess_out(country), |
| 207 | data_path=env.paths.mwm_path, |
| 208 | user_resource_path=env.paths.user_resource_path, |
| 209 | output=country, |
| 210 | generate_cities_ids=True, |
| 211 | **kwargs, |
| 212 | ) |
| 213 | |
| 214 | |
| 215 | def filter_roads( |
nothing calls this directly
no test coverage detected