(env: Env, country: AnyStr, **kwargs)
| 295 | |
| 296 | |
| 297 | def step_ugc(env: Env, country: AnyStr, **kwargs): |
| 298 | run_gen_tool_with_recovery_country( |
| 299 | env, |
| 300 | env.gen_tool, |
| 301 | out=env.get_subprocess_out(country), |
| 302 | err=env.get_subprocess_out(country), |
| 303 | data_path=env.paths.mwm_path, |
| 304 | intermediate_data_path=env.paths.intermediate_data_path, |
| 305 | cache_path=env.paths.cache_path, |
| 306 | user_resource_path=env.paths.user_resource_path, |
| 307 | ugc_data=env.paths.ugc_path, |
| 308 | output=country, |
| 309 | **kwargs, |
| 310 | ) |
| 311 | |
| 312 | |
| 313 | def step_popularity(env: Env, country: AnyStr, **kwargs): |
nothing calls this directly
no test coverage detected