titibs29 / API_LED_PY

Bad classmethod argument PYL-C0202
Style
Major
4 months agoa year old
Class method setUpClass should have 'cls' as first argument
 4class Test_TestAPI(unittest.TestCase):
 5
 6    @classmethod
 7    def setUpClass(self): 8        self.conn = http.client.HTTPConnection("localhost:3000")
 9        
10