Skip to content

Commit

Permalink
Blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Dec 3, 2019
1 parent 9e6fc80 commit 4253637
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions paramiko/pkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@ class PKey(object):
BEGIN_TAG = re.compile(
r"^-{5}BEGIN (RSA|DSA|EC|OPENSSH) PRIVATE KEY-{5}\s*$"
)
END_TAG = re.compile(
r"^-{5}END (RSA|DSA|EC|OPENSSH) PRIVATE KEY-{5}\s*$"
)
END_TAG = re.compile(r"^-{5}END (RSA|DSA|EC|OPENSSH) PRIVATE KEY-{5}\s*$")

def __init__(self, msg=None, data=None):
"""
Expand Down

0 comments on commit 4253637

Please sign in to comment.