(array)
| 121 | logging.info(f"An error occurred while installing requirements.txt: exit_code={exit_code} logs={logs}") |
| 122 | |
| 123 | def count_non_empty_strings(array): |
| 124 | count = 0 |
| 125 | for item in array: |
| 126 | if item is not None and isinstance(item, str) and len(item) > 0: |
| 127 | count += 1 |
| 128 | return count |
| 129 | |
| 130 | class CodeGen: |
| 131 | def __init__(self, args): |
nothing calls this directly
no outgoing calls
no test coverage detected