(self)
| 4 | |
| 5 | class WechatUtils: |
| 6 | def __init__(self): |
| 7 | self.configs_path = self.get_configs_path() |
| 8 | self.version_list = self.get_version_list() |
| 9 | |
| 10 | # self.pid , self.version = self.get_wechat_pid_and_version() |
| 11 | # if self.pid is None and self.version is None: |
| 12 | # self.print_process_not_found_message() |
| 13 | |
| 14 | def get_configs_path(self): |
| 15 | current_path = os.path.abspath(__file__) |
nothing calls this directly
no test coverage detected