diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-04-12 13:02:57 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-04-12 13:02:57 -0400 |
commit | 107adba241dc2cd6483bddc1d10087af5abe98ae (patch) | |
tree | d613b1270c9971df8bd11cf89c3b427a8ad2990b /python | |
parent | 74e9300daf0b5537749d5bbe6500281ba19d6e88 (diff) |
isort python/olm/pk.py
Diffstat (limited to 'python')
-rw-r--r-- | python/olm/pk.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/olm/pk.py b/python/olm/pk.py index 6c91b98..193aba5 100644 --- a/python/olm/pk.py +++ b/python/olm/pk.py @@ -35,11 +35,13 @@ Examples: from builtins import super from typing import AnyStr, Type + from future.utils import bytes_to_native_str from _libolm import ffi, lib # type: ignore -from ._finalize import track_for_finalization + from ._compat import URANDOM, to_bytearray +from ._finalize import track_for_finalization class PkEncryptionError(Exception): |