From 24852bd99fc9e1c0331a4e4d3ed5aa9999677407 Mon Sep 17 00:00:00 2001 From: tim Date: Tue, 11 Oct 2016 17:34:11 +0200 Subject: [PATCH] Make exceptions.py comply to 80 chars --- exceptions.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/exceptions.py b/exceptions.py index 4e42ebee..8e4d8eca 100644 --- a/exceptions.py +++ b/exceptions.py @@ -23,11 +23,13 @@ class DoubleSpend(Exception): class InvalidHash(Exception): - """Raised if there was an error checking the hash for a particular operation""" + """Raised if there was an error checking the hash for a particular + operation""" class InvalidSignature(Exception): - """Raised if there was an error checking the signature for a particular operation""" + """Raised if there was an error checking the signature for a particular + operation""" class DatabaseAlreadyExists(Exception): @@ -43,7 +45,8 @@ class KeypairNotFoundException(Exception): class KeypairMismatchException(Exception): - """Raised if the private key(s) provided for signing don't match any of the curret owner(s)""" + """Raised if the private key(s) provided for signing don't match any of the + current owner(s)""" class StartupError(Exception): @@ -67,4 +70,5 @@ class CyclicBlockchainError(Exception): class FulfillmentNotInValidBlock(Exception): - """Raised when a transaction depends on an invalid or undecided fulfillment""" + """Raised when a transaction depends on an invalid or undecided + fulfillment"""