(env: Env, country: AnyStr, **kwargs)
| 311 | |
| 312 | |
| 313 | def step_popularity(env: Env, country: AnyStr, **kwargs): |
| 314 | run_gen_tool_with_recovery_country( |
| 315 | env, |
| 316 | env.gen_tool, |
| 317 | out=env.get_subprocess_out(country), |
| 318 | err=env.get_subprocess_out(country), |
| 319 | data_path=env.paths.mwm_path, |
| 320 | user_resource_path=env.paths.user_resource_path, |
| 321 | generate_popular_places=True, |
| 322 | output=country, |
| 323 | **kwargs, |
| 324 | ) |
| 325 | |
| 326 | def step_popularity_world(env: Env, country: AnyStr, **kwargs): |
| 327 | run_gen_tool_with_recovery_country( |
nothing calls this directly
no test coverage detected