(options)
| 12 | |
| 13 | |
| 14 | def get_number(options): |
| 15 | result_string = '' |
| 16 | for i, option in enumerate(options, start=ord('A')): |
| 17 | result_string += f'{chr(i)}. {option}\n' |
| 18 | return result_string |
| 19 | |
| 20 | |
| 21 | def get_circular_example(entry, id): |
no outgoing calls
no test coverage detected