Release the currently checked out license back to the Enterprise Server. .. note:: You must authenticate with the Enterprise Server before calling this. .. note:: This will deactivate the Binary Ninja Enterprise client. You must call :func:`acquire_license` \ again to continue using Binary Ni
()
| 258 | |
| 259 | |
| 260 | def release_license(): |
| 261 | """ |
| 262 | Release the currently checked out license back to the Enterprise Server. |
| 263 | |
| 264 | .. note:: You must authenticate with the Enterprise Server before calling this. |
| 265 | |
| 266 | .. note:: This will deactivate the Binary Ninja Enterprise client. You must call :func:`acquire_license` \ |
| 267 | again to continue using Binary Ninja Enterprise in the current process. |
| 268 | """ |
| 269 | if not core.BNReleaseEnterpriseServerLicense(): |
| 270 | raise RuntimeError(last_error()) |
| 271 | |
| 272 | |
| 273 | def license_expiration_time() -> int: |