Skip to content

Commit 92508ba

Browse files
committed
Run black
1 parent 60d3a3a commit 92508ba

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

minfraud/webservice.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ def _prepare_transaction(self, request: Dict[str, Any], validate: bool):
8686
try:
8787
validate_transaction(cleaned_request)
8888
except MultipleInvalid as ex:
89-
raise InvalidRequestError("Invalid transaction data: {0}".format(ex)) from ex
89+
raise InvalidRequestError(
90+
"Invalid transaction data: {0}".format(ex)
91+
) from ex
9092
return cleaned_request
9193

9294
def _copy_and_clean(self, data: Any) -> Any:

0 commit comments

Comments
 (0)