退出 none driver 参数: force: 强制退出
(self, force: bool = False)
| 148 | tg.cancel_scope.cancel() |
| 149 | |
| 150 | def exit(self, force: bool = False): |
| 151 | """退出 none driver |
| 152 | |
| 153 | 参数: |
| 154 | force: 强制退出 |
| 155 | """ |
| 156 | if not self.should_exit.is_set(): |
| 157 | self.should_exit.set() |
| 158 | if force: |
| 159 | self.force_exit.set() |
no test coverage detected