(self)
| 407 | self.acquired_license = True |
| 408 | |
| 409 | def release(self): |
| 410 | # UI builds have their own license manager |
| 411 | if binaryninja.core_ui_enabled(): |
| 412 | return |
| 413 | # Don't release if we got one from keychain |
| 414 | if self.acquired_license and self.desired_release: |
| 415 | release_license() |
| 416 | self.acquired_license = False |
no test coverage detected