(self, process_name)
| 14 | print(f"Failed to report the wrong picture. Please save it yourself ErrorMsg: {e}") |
| 15 | |
| 16 | def check_process(self, process_name): |
| 17 | for proc in psutil.process_iter(['pid', 'name']): |
| 18 | if process_name == proc.info['name']: |
| 19 | return True |
| 20 | return False |
| 21 | |
| 22 | |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected