diff options
author | Will Hunt <will@half-shot.uk> | 2020-07-05 16:32:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 16:32:02 +0100 |
commit | 62b1ce85398f52e7d6137e77083294d0c90af459 (patch) | |
tree | 8bb59226c2abea66fccfd42068a608a88eeaae8c /synapse/secrets.py | |
parent | Merge different Resource implementation classes (#7732) (diff) | |
download | synapse-62b1ce85398f52e7d6137e77083294d0c90af459.tar.xz |
isort 5 compatibility (#7786)
The CI appears to use the latest version of isort, which is a problem when isort gets a major version bump. Rather than try to pin the version, I've done the necessary to make isort5 happy with synapse.
Diffstat (limited to 'synapse/secrets.py')
-rw-r--r-- | synapse/secrets.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/secrets.py b/synapse/secrets.py index 0b327a0f82..5f43f81eb0 100644 --- a/synapse/secrets.py +++ b/synapse/secrets.py @@ -19,7 +19,6 @@ Injectable secrets module for Synapse. See https://docs.python.org/3/library/secrets.html#module-secrets for the API used in Python 3.6, and the API emulated in Python 2.7. """ - import sys # secrets is available since python 3.6 @@ -31,8 +30,8 @@ if sys.version_info[0:2] >= (3, 6): else: - import os import binascii + import os class Secrets(object): def token_bytes(self, nbytes=32): |