Wrap an encoded JSON document for direct embedding in the output
| 2 | """ |
| 3 | |
| 4 | class RawJSON(object): |
| 5 | """Wrap an encoded JSON document for direct embedding in the output |
| 6 | |
| 7 | """ |
| 8 | def __init__(self, encoded_json): |
| 9 | self.encoded_json = encoded_json |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…