Ask for operation(run/code)
()
| 251 | |
| 252 | |
| 253 | def ask_option(): |
| 254 | """ |
| 255 | Ask for operation(run/code) |
| 256 | """ |
| 257 | answer = questionary.select( |
| 258 | "Select an Option:", |
| 259 | choices=['Run', 'Code']).ask() |
| 260 | |
| 261 | return answer.lower() |
| 262 | |
| 263 | |
| 264 | def ask_run_options(): |