sanketsaurav / lore

Bad classmethod argument PYL-C0202
Style
Major
1 occurrence in this check
Class method setUpClass should have 'cls' as first argument
 25
 26class TestConnection(unittest.TestCase):
 27    @classmethod
 28    def setUpClass(self): 29        self.table = sqlalchemy.Table(
 30            'tests_users', lore.io.main.metadata,
 31            sqlalchemy.Column('id', sqlalchemy.Integer, primary_key=True),