Last analyzed a417f8b a month ago
Default analysis branch is
Currently analyzing run
Bad classmethod argument PYL-C0202
Style
4 months ago5 months 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