File size: 233 Bytes
362b9f8
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13

from format import Format

class JSONFormat(Format):
    def __init__(self, body):
        self.json = body
        self.html = None
        self.text = None

    def method1(self):
        # Method implementation here
        pass