plcopen/InstancesPathCollector.py
changeset 1953 5736d25bb393
parent 1942 a4382ae1ba82
child 3750 f62625418bff
--- a/plcopen/InstancesPathCollector.py	Tue Feb 20 11:24:40 2018 +0100
+++ b/plcopen/InstancesPathCollector.py	Tue Feb 20 14:16:51 2018 +0100
@@ -6,6 +6,7 @@
 from __future__ import absolute_import
 from plcopen.XSLTModelQuery import XSLTModelQuery
 
+
 class InstancesPathCollector(XSLTModelQuery):
     """ object for collecting instances path list"""
     def __init__(self, controller):
@@ -19,8 +20,7 @@
         self.Instances.append(args[0][0])
 
     def Collect(self, root, name, debug):
-        self._process_xslt(root, debug, instance_type = name)
+        self._process_xslt(root, debug, instance_type=name)
         res = self.Instances
         self.Instances = []
         return res
-