Class object to store a log group with the same template
| 22 | |
| 23 | |
| 24 | class LCSObject: |
| 25 | """Class object to store a log group with the same template""" |
| 26 | |
| 27 | def __init__(self, logTemplate="", logIDL=[]): |
| 28 | self.logTemplate = logTemplate |
| 29 | self.logIDL = logIDL |
| 30 | |
| 31 | |
| 32 | class Node: |