removed debug print
[rainbowstream.git] / rainbowstream / table_def.py
index b16f175191765c1649f716bc4d4cf0d8fee09d35..03ceb5a4e6350a2b6a7c99c2cc82562fbc36dc41 100644 (file)
@@ -43,11 +43,11 @@ class Semaphore(Base):
     __tablename__ = "semaphore"
 
     semaphore_id = Column(Integer, primary_key=True)
-    flag = Column(Boolean)
+    lock = Column(Boolean)
     pause = Column(Boolean)
 
-    def __init__(self, flag, pause):
-        self.flag = flag
+    def __init__(self, lock, pause):
+        self.lock = lock
         self.pause = pause