diff --git a/libs/gl-client-py/glclient/__init__.py b/libs/gl-client-py/glclient/__init__.py index faca6b9c5..55d63e475 100644 --- a/libs/gl-client-py/glclient/__init__.py +++ b/libs/gl-client-py/glclient/__init__.py @@ -11,9 +11,13 @@ from glclient.lsps import LspClient +backup_decrypt_with_seed = native.backup_decrypt_with_seed + + # Keep in sync with the libhsmd version, this is tested in unit tests. __version__ = "v23.08" + E = TypeVar('E', bound=PbMessage) def _convert(cls: Type[E], res: Iterable[Any]) -> E: return cls.FromString(bytes(res))