Remove type hint causing CI build to fail

This commit is contained in:
Florian Schäfer 2018-01-24 12:08:59 +01:00
parent 3064d88432
commit 760317387c
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ class Blockchain:
return self.last_block['index'] + 1
@property
def last_block(self) -> Dict[str, Any]:
def last_block(self):
return self.chain[-1]
@staticmethod