plcopen/structures.py
changeset 1847 6198190bc121
parent 1846 14b40afccd69
child 1853 47a3f39bead0
--- a/plcopen/structures.py	Tue Oct 03 16:31:31 2017 +0300
+++ b/plcopen/structures.py	Thu Oct 05 16:38:49 2017 +0300
@@ -51,7 +51,7 @@
     """
     Returns list of all types that correspont to the ANY* meta type
     """
-    return [typename for typename, parenttype in TypeHierarchy.items() if not typename.startswith("ANY") and IsOfType(typename, type)]
+    return [typename for typename, _parenttype in TypeHierarchy.items() if not typename.startswith("ANY") and IsOfType(typename, type)]
 
 
 DataTypeRange = dict(DataTypeRange_list)