From 0575e7e688ec4059a5b5a444c298a1088c91cd96 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Thu, 18 Apr 2019 00:51:17 +0200 Subject: [PATCH] Fix formatting --- little_boxes/httpsig.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/little_boxes/httpsig.py b/little_boxes/httpsig.py index f910963..b526371 100644 --- a/little_boxes/httpsig.py +++ b/little_boxes/httpsig.py @@ -68,7 +68,9 @@ def _get_public_key(key_id: str) -> Key: # Ensure the right key was fetch if key_id != actor["publicKey"]["id"]: - raise ValueError(f"failed to fetch requested key {key_id}: got {actor['publicKey']['id']}") + raise ValueError( + f"failed to fetch requested key {key_id}: got {actor['publicKey']['id']}" + ) return k