(line, indent)
| 27 | |
| 28 | |
| 29 | def _should_continue(line, indent): |
| 30 | return line.startswith(indent) or len(line) <= 1 or re.search(r"^\s*\)(\s*->.*:|:)\s*$", line) is not None |
| 31 | |
| 32 | |
| 33 | def find_code_in_diffusers(object_name): |
no outgoing calls
no test coverage detected