From ab53a0821fc66a5f05b39c7e2df20a6091c9b8ee Mon Sep 17 00:00:00 2001 From: feliam Date: Thu, 21 Apr 2022 10:46:47 -0300 Subject: [PATCH] linted --- slither/core/solidity_types/type_alias.py | 1 + 1 file changed, 1 insertion(+) diff --git a/slither/core/solidity_types/type_alias.py b/slither/core/solidity_types/type_alias.py index cb2d43de1..0a1f99d23 100644 --- a/slither/core/solidity_types/type_alias.py +++ b/slither/core/solidity_types/type_alias.py @@ -15,6 +15,7 @@ class TypeAlias(Type): self.name = name self.underlying_type = underlying_type + @property def storage_size(self) -> Tuple[int, bool]: return self.underlying_type.storage_size