| 31 | |
| 32 | |
| 33 | class Node: |
| 34 | def __init__(self, childD=None, depth=0, digitOrtoken=None): |
| 35 | if childD is None: |
| 36 | childD = dict() |
| 37 | self.childD = childD |
| 38 | self.depth = depth |
| 39 | self.digitOrtoken = digitOrtoken |
| 40 | |
| 41 | |
| 42 | class LogParser: |
no outgoing calls
no test coverage detected