summaryrefslogtreecommitdiff
path: root/paramiko/kex_gex.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-05-29 15:18:24 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-05-29 15:18:34 -0700
commitc091e756084ce017d8d872ffeaf95422f79140f1 (patch)
tree4c8c82399a6a21217f78ff36a90c3a355f6a0c23 /paramiko/kex_gex.py
parent0bf3fa458deffe1306f226a7257ceda927ca9e8e (diff)
downloadparamiko-c091e756084ce017d8d872ffeaf95422f79140f1.tar.gz
Blacken under black 18.5b0
Diffstat (limited to 'paramiko/kex_gex.py')
-rw-r--r--paramiko/kex_gex.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/paramiko/kex_gex.py b/paramiko/kex_gex.py
index 6b24c1ff..fb8f01fd 100644
--- a/paramiko/kex_gex.py
+++ b/paramiko/kex_gex.py
@@ -38,9 +38,7 @@ from paramiko.ssh_exception import SSHException
_MSG_KEXDH_GEX_INIT,
_MSG_KEXDH_GEX_REPLY,
_MSG_KEXDH_GEX_REQUEST,
-) = range(
- 30, 35
-)
+) = range(30, 35)
(
c_MSG_KEXDH_GEX_REQUEST_OLD,
@@ -48,9 +46,7 @@ from paramiko.ssh_exception import SSHException
c_MSG_KEXDH_GEX_INIT,
c_MSG_KEXDH_GEX_REPLY,
c_MSG_KEXDH_GEX_REQUEST,
-) = [
- byte_chr(c) for c in range(30, 35)
-]
+) = [byte_chr(c) for c in range(30, 35)]
class KexGex(object):