pull/238/head
Josselin 5 years ago
parent adacf35efd
commit 6599ae69e6
  1. 2
      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:

Loading…
Cancel
Save