| 2 | import re |
| 3 | |
| 4 | class IcingaStringPrinter: |
| 5 | def __init__(self, val): |
| 6 | self.val = val |
| 7 | |
| 8 | def to_string(self): |
| 9 | return '"' + self.val['m_Data']['_M_dataplus']['_M_p'].string() + '"' |
| 10 | |
| 11 | class IcingaValuePrinter: |
| 12 | def __init__(self, val): |
no outgoing calls
no test coverage detected