add required type hint

pull/902/head
Joran Honig 6 years ago
parent a772d58caa
commit 94ea7831c6
  1. 2
      mythril/laser/smt/model.py

@ -19,7 +19,7 @@ class Model:
def decls(self) -> List[z3.ExprRef]:
"""Get the declarations for this model"""
result = []
result = [] # type: List[z3.ExprRef]
for internal_model in self.raw:
result.extend(internal_model.decls())
return result

Loading…
Cancel
Save