Skip to content

Commit

Permalink
fixing line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
cfpipeline committed Oct 29, 2020
1 parent a338b91 commit f92cd30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stacker/lookups/handlers/kms.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def handle(cls, value, **kwargs):

# decrypt and return the plain text raw value.
if python3_or_later:
return kms.decrypt(CiphertextBlob=decoded)["Plaintext"].decode('utf-8')
return kms.decrypt(CiphertextBlob=decoded)["Plaintext"]\
.decode('utf-8')
else:
return kms.decrypt(CiphertextBlob=decoded)["Plaintext"]

0 comments on commit f92cd30

Please sign in to comment.