list fully supported and autopep8
[rainbowstream.git] / rainbowstream / table_def.py
index 28bbfc9000fa8658f7bd39285e30bd53e4760702..fda3948dfbe0ad06d8bf77e08c1d296fbca93862 100644 (file)
@@ -38,18 +38,5 @@ class Theme(Base):
         self.theme_name = theme_name
 
 
-class List(Base):
-
-    __tablename__ = "list"
-
-    list_rid = Column(Integer, primary_key=True)
-    list_id = Column(Integer)
-    list_name = Column(String(50))
-
-    def __init__(self, list_id, list_name):
-        self.list_id = list_id
-        self.list_name = list_name
-
-
 def init_db():
     Base.metadata.create_all(engine)