(s, new_stop)
| 258 | |
| 259 | |
| 260 | def _add_to_set(s, new_stop): |
| 261 | if not s: |
| 262 | return |
| 263 | if isinstance(s, str): |
| 264 | new_stop.add(s) |
| 265 | else: |
| 266 | new_stop.update(s) |
| 267 | |
| 268 | |
| 269 | async def get_gen_params( |
no outgoing calls
no test coverage detected
searching dependent graphs…