(self, id, tags)
| 5 | |
| 6 | class Problem: |
| 7 | def __init__(self, id, tags): |
| 8 | self.id = id |
| 9 | self.tags = tags |
| 10 | |
| 11 | class DataMapNode: |
| 12 | def __init__(self, name, problems, is_root, parent): |
nothing calls this directly
no outgoing calls
no test coverage detected