A node in prefix tree data structure
| 30 | |
| 31 | |
| 32 | class Node: |
| 33 | """A node in prefix tree data structure""" |
| 34 | |
| 35 | def __init__(self, token="", templateNo=0): |
| 36 | self.logClust = None |
| 37 | self.token = token |
| 38 | self.templateNo = templateNo |
| 39 | self.childD = dict() |
| 40 | |
| 41 | |
| 42 | class LogParser: |
no outgoing calls
no test coverage detected