From 29de46018730249e8faa0b88cd8d18fc109628a6 Mon Sep 17 00:00:00 2001 From: jMyles Date: Mon, 3 Jul 2023 11:33:35 +0200 Subject: [PATCH] Chaotic wasn't black enough. --- nucypher/characters/chaotic.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/nucypher/characters/chaotic.py b/nucypher/characters/chaotic.py index 2ca07ca83..5e1c59464 100644 --- a/nucypher/characters/chaotic.py +++ b/nucypher/characters/chaotic.py @@ -146,7 +146,9 @@ class NiceGuyEddie(Enrico, DKGOmniscient): encrypting_key_we_actually_want_to_use = self._dkg_insight.dkg.public_key super().__init__( # https://imgflip.com/i/7o0po4 - encrypting_key=encrypting_key_we_actually_want_to_use, *args, **kwargs + encrypting_key=encrypting_key_we_actually_want_to_use, + *args, + **kwargs, ) @@ -227,10 +229,10 @@ class DoomedDecryptionClient(ThresholdDecryptionClient): """ def gather_encrypted_decryption_shares( - self, - encrypted_requests, - threshold: int, - timeout: float = 10, + self, + encrypted_requests, + threshold: int, + timeout: float = 10, ) -> Tuple[ Dict[ChecksumAddress, EncryptedThresholdDecryptionResponse], Dict[ChecksumAddress, str],