Skip to content

Commit

Permalink
Revert to old style type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
jannikluhn committed May 9, 2019
1 parent 11a7768 commit a8b8b46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eth_keys/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ def sign_msg_hash_non_recoverable(self, message_hash: bytes) -> 'NonRecoverableS


class BaseSignature(ByteString, LazyBackend, ABC):
_r: int = None
_s: int = None
_r = None # type: int
_s = None # type: int

def __init__(self,
rs: Tuple[int, int],
Expand Down Expand Up @@ -345,7 +345,7 @@ def verify_msg_hash(self,


class Signature(BaseSignature):
_v: int = None
_v = None # type: int

def __init__(self,
signature_bytes: bytes = None,
Expand Down

0 comments on commit a8b8b46

Please sign in to comment.