add typpe annotations

pull/1411/head
Joran Honig 4 years ago
parent 65f5ff1d3b
commit 3b03a72b39
  1. 4
      mythril/analysis/report.py

@ -196,9 +196,9 @@ class Report:
:param contracts:
:param exceptions:
"""
self.issues = {}
self.issues = {} # type: Dict[bytes, Issue]
self.solc_version = ""
self.meta = {}
self.meta = {} # type: Dict[str, any]
self.source = Source()
self.source.get_source_from_contracts_list(contracts)
self.exceptions = exceptions or []

Loading…
Cancel
Save