From 5c922ba16d1da5b60b8aaa39ca357862f9e0921c Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Tue, 14 Aug 2018 12:24:34 -0700 Subject: [PATCH] Small bug fixes + Improve type hints, error mesages, and documentation --- nucypher/characters.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nucypher/characters.py b/nucypher/characters.py index 2484f7d84..1f7f91aec 100644 --- a/nucypher/characters.py +++ b/nucypher/characters.py @@ -24,9 +24,6 @@ from nucypher.blockchain.eth.constants import datetime_to_period from nucypher.config.constants import DEFAULT_INI_FILEPATH from nucypher.config.parsers import parse_ursula_config, parse_alice_config, \ parse_character_config - -from nucypher.config.parsers import parse_nucypher_ini_config, parse_ursula_config, parse_alice_config, \ - parse_character_config from nucypher.crypto.api import keccak_digest, encrypt_and_sign from nucypher.crypto.constants import PUBLIC_ADDRESS_LENGTH, PUBLIC_KEY_LENGTH from nucypher.crypto.kits import UmbralMessageKit @@ -74,7 +71,6 @@ class Character: crypto_power: CryptoPower = None, crypto_power_ups: List[CryptoPowerUp] = None, federated_only: bool = False, - checksum_address: bytes = None, always_be_learning: bool = False, start_learning_on_same_thread: bool = False, @@ -1131,7 +1127,6 @@ class Ursula(Character, VerifiableNode, ProxyRESTServer, Miner): def from_config(cls, filepath: str=DEFAULT_INI_FILEPATH, overrides: dict=None) -> 'Ursula': - """ Initialize Ursula from .ini configuration file.