(env: Env, country: AnyStr, **kwargs)
| 324 | ) |
| 325 | |
| 326 | def step_popularity_world(env: Env, country: AnyStr, **kwargs): |
| 327 | run_gen_tool_with_recovery_country( |
| 328 | env, |
| 329 | env.gen_tool, |
| 330 | out=env.get_subprocess_out(country), |
| 331 | err=env.get_subprocess_out(country), |
| 332 | data_path=env.paths.mwm_path, |
| 333 | user_resource_path=env.paths.user_resource_path, |
| 334 | wikipedia_pages=env.paths.descriptions_path, |
| 335 | idToWikidata=env.paths.id_to_wikidata_path, |
| 336 | generate_popular_places=True, |
| 337 | output=country, |
| 338 | **kwargs, |
| 339 | ) |
| 340 | |
| 341 | |
| 342 | def step_srtm(env: Env, country: AnyStr, **kwargs): |
nothing calls this directly
no test coverage detected