From 1305533759d940eaf4af66c990dc320e80e51ba0 Mon Sep 17 00:00:00 2001 From: Dominik Muhs Date: Thu, 13 Dec 2018 19:41:23 +0530 Subject: [PATCH] Better type hinting on _analyze_states function Co-Authored-By: norhh --- mythril/analysis/modules/delegatecall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/analysis/modules/delegatecall.py b/mythril/analysis/modules/delegatecall.py index 0f1d9aa4..4e3228db 100644 --- a/mythril/analysis/modules/delegatecall.py +++ b/mythril/analysis/modules/delegatecall.py @@ -33,7 +33,7 @@ class DelegateCallModule(DetectionModule): return self.issues -def _analyze_states(state: GlobalState) -> list: +def _analyze_states(state: GlobalState) -> List[Issue]: """ :param state: the current state :return: returns the issues for that corresponding state