(self, filename)
| 97 | |
| 98 | class JSONOutputFormat(KVWriter): |
| 99 | def __init__(self, filename): |
| 100 | self.file = open(filename, "wt") |
| 101 | |
| 102 | def writekvs(self, kvs): |
| 103 | for k, v in sorted(kvs.items()): |
nothing calls this directly
no outgoing calls
no test coverage detected