Merge pull request #19 from rbalazs/master

Fix of type errors
This commit is contained in:
Daniel van Flymen 2017-11-01 11:32:03 -04:00 committed by GitHub
commit 5c6f5109c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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