summaryrefslogtreecommitdiff
path: root/paramiko/rsakey.py
diff options
context:
space:
mode:
authorDorian Pula <dorian.pula@amber-penguin-software.ca>2017-05-29 17:21:36 -0400
committerJeff Forcier <jeff@bitprophet.org>2017-05-31 17:14:40 -0700
commitbda557429547f4d5a4e81492c9754b3b4e1ae622 (patch)
tree431188a8f881b97814c767fc70aa0bfd3e8461e3 /paramiko/rsakey.py
parentfa96fe0609b335c2b97aa7ff8db0dc4fb6710ff1 (diff)
downloadparamiko-bda557429547f4d5a4e81492c9754b3b4e1ae622.tar.gz
Flake8 improvements for more of paramiko.
Diffstat (limited to 'paramiko/rsakey.py')
-rw-r--r--paramiko/rsakey.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/paramiko/rsakey.py b/paramiko/rsakey.py
index fa2b4c44..8ccf4c30 100644
--- a/paramiko/rsakey.py
+++ b/paramiko/rsakey.py
@@ -37,7 +37,8 @@ class RSAKey(PKey):
data.
"""
- def __init__(self, msg=None, data=None, filename=None, password=None, key=None, file_obj=None):
+ def __init__(self, msg=None, data=None, filename=None, password=None,
+ key=None, file_obj=None):
self.key = None
if file_obj is not None:
self._from_private_key(file_obj, password)
@@ -167,7 +168,7 @@ class RSAKey(PKey):
)
return RSAKey(key=key)
- ### internals...
+ # ...internals...
def _from_private_key_file(self, filename, password):
data = self._read_private_key_file('RSA', filename, password)