(self, prompt="Press Enter to continue...")
| 159 | os.startfile(folder_path) |
| 160 | |
| 161 | def request_input(self, prompt="Press Enter to continue..."): |
| 162 | if sys.version_info[0] < 3: |
| 163 | user_response = raw_input(prompt) |
| 164 | else: |
| 165 | user_response = input(prompt) |
| 166 | |
| 167 | if not isinstance(user_response, str): |
| 168 | user_response = str(user_response) |
| 169 | |
| 170 | return user_response |
| 171 | |
| 172 | def progress_bar(self, title, steps, current_step_index, done=False): |
| 173 | self.head(title) |
no outgoing calls
no test coverage detected