commit | c3fac9d285a0c23f4629e37e628c26e65d8768a7 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Sat Jan 16 12:15:09 2016 -0500 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Sat Jan 16 12:15:09 2016 -0500 |
tree | 9993cf94e4c23810d2bb30bd1642726bd398a217 | |
parent | b3316fc4e8ffabce720fa825fccc8fcb2c7256c6 [diff] |
Fixed up some flake8 errors from the latest version
diff --git a/src/OpenSSL/tsafe.py b/src/OpenSSL/tsafe.py index ba17d73..1cc0d2b 100644 --- a/src/OpenSSL/tsafe.py +++ b/src/OpenSSL/tsafe.py
@@ -1,10 +1,6 @@ -from OpenSSL import SSL -_ssl = SSL -del SSL +from threading import RLock as _RLock -import threading -_RLock = threading.RLock -del threading +from OpenSSL import SSL as _ssl class Connection: