From 6599ae69e61f7bb1e614ddd96b5ccf97f33cf21a Mon Sep 17 00:00:00 2001 From: Josselin Date: Fri, 5 Jul 2019 18:27:23 +0200 Subject: [PATCH] Minor --- utils/slither_format/formatters/naming_convention.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/slither_format/formatters/naming_convention.py b/utils/slither_format/formatters/naming_convention.py index a51e802ee..d568f4e78 100644 --- a/utils/slither_format/formatters/naming_convention.py +++ b/utils/slither_format/formatters/naming_convention.py @@ -303,7 +303,7 @@ def _explore_modifiers_calls(slither, function, result, target, convert): def _explore_structures_declaration(slither, structures, result, target, convert): for st in structures: # Explore the variable declared within the structure (VariableStructure) - _explore_variables_declaration(slither, st.elem.values(), result, target, convert) + _explore_variables_declaration(slither, st.elems.values(), result, target, convert) # If the structure is the target if st == target: