summaryrefslogtreecommitdiff
path: root/paramiko/primes.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/primes.py
parent0bf3fa458deffe1306f226a7257ceda927ca9e8e (diff)
downloadparamiko-c091e756084ce017d8d872ffeaf95422f79140f1.tar.gz
Blacken under black 18.5b0
Diffstat (limited to 'paramiko/primes.py')
-rw-r--r--paramiko/primes.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/paramiko/primes.py b/paramiko/primes.py
index 7496abbd..8dff7683 100644
--- a/paramiko/primes.py
+++ b/paramiko/primes.py
@@ -62,7 +62,13 @@ class ModulusPack(object):
def _parse_modulus(self, line):
(
- timestamp, mod_type, tests, tries, size, generator, modulus
+ timestamp,
+ mod_type,
+ tests,
+ tries,
+ size,
+ generator,
+ modulus,
) = line.split()
mod_type = int(mod_type)
tests = int(tests)